ssb: prettier.
Some checks failed
Build Tilde Friends / Build-All (push) Has been cancelled

This commit is contained in:
2025-04-09 22:15:51 -04:00
parent d9684c7d62
commit 67d458bd38
3 changed files with 38 additions and 14 deletions

View File

@ -431,12 +431,17 @@ class TfMessageElement extends LitElement {
>
Copy ID
</button>
${this.drafts[this.message?.id] === undefined ? html`
<button class="w3-button w3-bar-item" @click=${this.show_reply}>
⮢ Reply
</button>
` : undefined}
<button class="w3-button w3-bar-item w3-border-bottom" @click=${this.react}>
${this.drafts[this.message?.id] === undefined
? html`
<button class="w3-button w3-bar-item" @click=${this.show_reply}>
⮢ Reply
</button>
`
: undefined}
<button
class="w3-button w3-bar-item w3-border-bottom"
@click=${this.react}
>
👍 React
</button>
${formats.map(
@ -541,8 +546,7 @@ class TfMessageElement extends LitElement {
: undefined;
return html`
<div class="w3-section w3-container">
${reply}
${this.render_children()}
${reply} ${this.render_children()}
</div>
`;
}