Commit d37fd6c80d7a395cf25c469477fc0b4695a51e5e
Merge branch 'master' of github.com:ticktackim/ticktack-wp1 into reply_to_thread
mix irving committed on 8/15/2017, 11:39:09 PMParent: a4727341e869458648277d26f61c051de3eec9da
Parent: 6ec0db7801b46b66f52d44d1d0a6006fdc71b53f
Files changed
app/html/thread-card.js | changed |
app/html/thread-card.js | ||
---|---|---|
@@ -85,10 +85,12 @@ | ||
85 | 85 | const lastReply = thread.replies && maxBy(thread.replies, r => r.timestamp) |
86 | 86 | const replySample = lastReply ? subject(lastReply) : null |
87 | 87 | |
88 | 88 | const onClick = opts.onClick || function () { api.history.sync.push(thread) } |
89 | + const id = `${thread.key}-${JSON.stringify(opts)}` | |
90 | + // id is only here to help morphdom morph accurately | |
89 | 91 | |
90 | - return h('div.thread', {'ev-click': onClick }, [ | |
92 | + return h('div.thread', { 'ev-click': onClick, id }, [ | |
91 | 93 | h('div.context', threadIcon(thread)), |
92 | 94 | h('div.content', [ |
93 | 95 | subjectEl, |
94 | 96 | replySample ? h('div.reply', [ |
Built with git-ssb-web