|
|
|
@ -442,10 +442,7 @@ function createTextNote(evt, relay) {
|
|
|
|
|
...content,
|
|
|
|
|
(firstLink && validatePow(evt)) ? linkPreview(firstLink, evt.id, relay) : '',
|
|
|
|
|
]),
|
|
|
|
|
elem('button', {
|
|
|
|
|
className: 'btn-inline', name: 'star', type: 'button',
|
|
|
|
|
data: {'eventId': evt.id, relay},
|
|
|
|
|
}, [
|
|
|
|
|
elem('button', {className: 'btn-inline', name: 'star', type: 'button'}, [
|
|
|
|
|
elem('img', {
|
|
|
|
|
alt: didReact ? '✭' : '✩', // ♥
|
|
|
|
|
height: 24, width: 24,
|
|
|
|
@ -454,10 +451,9 @@ function createTextNote(evt, relay) {
|
|
|
|
|
}),
|
|
|
|
|
elem('small', {data: {reactions: evt.id}}, hasReactions ? reactionMap[evt.id].length : ''),
|
|
|
|
|
]),
|
|
|
|
|
elem('button', {
|
|
|
|
|
className: 'btn-inline', name: 'reply', type: 'button',
|
|
|
|
|
data: {'eventId': evt.id, relay},
|
|
|
|
|
}, [elem('img', {height: 24, width: 24, src: 'assets/comment.svg'})]),
|
|
|
|
|
elem('button', {className: 'btn-inline', name: 'reply', type: 'button'}, [
|
|
|
|
|
elem('img', {height: 24, width: 24, src: 'assets/comment.svg'})
|
|
|
|
|
]),
|
|
|
|
|
// replies[0] ? elem('div', {className: 'mobx-replies'}, replyFeed.reverse()) : '',
|
|
|
|
|
]);
|
|
|
|
|
if (restoredReplyTo === evt.id) {
|
|
|
|
|