diff --git a/apps/ssb.json b/apps/ssb.json index 9242621f..c7e0fc26 100644 --- a/apps/ssb.json +++ b/apps/ssb.json @@ -1,5 +1,5 @@ { "type": "tildefriends-app", "emoji": "🦀", - "previous": "&0QeFKi0qJk/VYLOxeIURs5nQCvkJs6DeiN3u5G4MW8w=.sha256" + "previous": "&2puSQK+3qQAGKmx7M5aYWWgGe7+zdOvtoT67Azb76BM=.sha256" } diff --git a/apps/ssb/tf-message.js b/apps/ssb/tf-message.js index b1c5bc07..644bf708 100644 --- a/apps/ssb/tf-message.js +++ b/apps/ssb/tf-message.js @@ -97,9 +97,10 @@ class TfMessageElement extends LitElement { } } if (this.message?.votes?.length) { - return html`
+ return html`
`; + `; } } @@ -157,7 +158,12 @@ class TfMessageElement extends LitElement { } react(event) { - emojis.picker((x) => this.vote(x), null, this.whoami, this.recent_reactions); + emojis.picker( + (x) => this.vote(x), + null, + this.whoami, + this.recent_reactions + ); } show_image(link) { @@ -548,20 +554,22 @@ class TfMessageElement extends LitElement { let reply = this.drafts[this.message?.id] !== undefined ? html` - +
+ +
` : undefined; return html` -
${reply}
+ ${reply} `; }