Fix single line status content mode in the chat list
2 unresolved threads
2 unresolved threads
Merge request reports
Activity
275 275 white-space: nowrap; 276 276 text-overflow: ellipsis; 277 277 overflow: hidden; 278 height: 1.4em; changed this line in version 2 of the diff
added 1 commit
- bd1e096e - Extract the first line via javascript instead of replying on CSS for the...
107 107 return this.mergedConfig.maxThumbnails 108 108 }, 109 109 postBodyHtml () { 110 const html = this.status.statusnet_html 110 let html = this.status.statusnet_html 111 112 if (this.singleLine) { 113 html = html.split('<br/>')[0] changed this line in version 3 of the diff
mentioned in commit 7bd68467
Please register or sign in to reply