mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
FIX: missing in action wrench on short topics
This commit is contained in:
parent
7337b2953f
commit
3701a8ada2
1 changed files with 4 additions and 2 deletions
|
@ -209,14 +209,16 @@ export default createWidget('topic-timeline', {
|
|||
const stream = attrs.topic.get('postStream.stream');
|
||||
const { currentUser } = this;
|
||||
|
||||
if (stream.length < 3) { return; }
|
||||
|
||||
|
||||
let result = [];
|
||||
if (currentUser && currentUser.get('canManageTopic')) {
|
||||
result.push(h('div.timeline-controls', this.attach('topic-admin-menu-button', { topic })));
|
||||
}
|
||||
|
||||
if (stream.length < 3) {
|
||||
return result;
|
||||
}
|
||||
|
||||
const bottomAge = relativeAge(new Date(topic.last_posted_at), { addAgo: true, defaultFormat: timelineDate });
|
||||
result = result.concat([this.attach('link', {
|
||||
className: 'start-date',
|
||||
|
|
Loading…
Reference in a new issue