FIX: un-delete topic wasn't working
This commit is contained in:
parent
66882155f0
commit
65f0339146
|
@ -328,6 +328,10 @@ export default ObjectController.extend(Discourse.SelectedPostsCount, BufferedCon
|
|||
this.get('content').toggleStatus('closed');
|
||||
},
|
||||
|
||||
recoverTopic: function() {
|
||||
this.get('content').recover();
|
||||
},
|
||||
|
||||
makeBanner: function() {
|
||||
this.get('content').makeBanner();
|
||||
},
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<h3>{{i18n 'admin_title'}}</h3>
|
||||
|
||||
<ul>
|
||||
<li>
|
||||
<button {{action "toggleMultiSelect"}} class='btn btn-admin'>{{fa-icon tasks}} {{i18n 'topic.actions.multi_select'}}</button>
|
||||
</li>
|
||||
<li>
|
||||
<button {{action "toggleMultiSelect"}} class='btn btn-admin'>{{fa-icon tasks}} {{i18n 'topic.actions.multi_select'}}</button>
|
||||
</li>
|
||||
|
||||
{{#if details.can_delete}}
|
||||
<li>
|
||||
|
|
Loading…
Reference in New Issue