UX: removes superfluous posters column header (#6765)
This commit is contained in:
parent
60189e8c92
commit
afdd244486
|
@ -4,7 +4,7 @@ export default Ember.Object.extend({
|
|||
return this.forceName;
|
||||
}
|
||||
|
||||
return I18n.t(this.name);
|
||||
return this.name ? I18n.t(this.name) : "";
|
||||
}.property(),
|
||||
|
||||
sortIcon: function() {
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
{{/if}}
|
||||
{{raw "topic-list-header-column" order='default' name=listTitle bulkSelectEnabled=bulkSelectEnabled showBulkToggle=toggleInTitle canBulkSelect=canBulkSelect}}
|
||||
{{#if showPosters}}
|
||||
{{raw "topic-list-header-column" order='posters' name='users'}}
|
||||
{{raw "topic-list-header-column" order='posters'}}
|
||||
{{/if}}
|
||||
{{raw "topic-list-header-column" sortable=sortable number='true' order='posts' name='replies'}}
|
||||
{{#if showParticipants}}
|
||||
|
|
Loading…
Reference in New Issue