Skip to content

Commit

Permalink
Add missing class to headlines feed heading.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbrand committed Oct 12, 2024
1 parent 5a29833 commit 37dfc25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/plugins/headlines-view/heading.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import tplChatHead from './templates/chat-head.js';
import { _converse, api } from "@converse/headless";
import { CustomElement } from 'shared/components/element.js';
import { __ } from 'i18n';
import { _converse, api } from "@converse/headless";
import tplChatHead from './templates/chat-head.js';


export default class HeadlinesHeading extends CustomElement {
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/headlines-view/templates/chat-head.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default (o) => {
${ (!_converse.api.settings.get("singleton")) ? html`<converse-controlbox-navback jid="${o.jid}"></converse-controlbox-navback>` : '' }
<div class="chatbox-title__text" title="${o.jid}">${ o.display_name }</div>
</div>
<div class="chatbox-title__buttons row g-0">
<div class="chatbox-title__buttons btn-toolbar g-0">
${ until(getDropdownButtons(o.heading_buttons_promise), '') }
${ until(getStandaloneButtons(o.heading_buttons_promise), '') }
</div>
Expand Down

0 comments on commit 37dfc25

Please sign in to comment.