discourse/app/assets/javascripts/admin/components/admin-report-counts.js.es6
Joffrey JAFFEUX 94b1a8c841
UX: disables all time col in activity metrics new dashboard
This commit also makes it work for old dashboard.
2018-05-14 16:04:54 +02:00

7 lines
225 B
JavaScript

export default Ember.Component.extend({
allTime: true,
tagName: 'tr',
reverseColors: Ember.computed.match('report.type', /^(time_to_first_response|topics_with_no_response)$/),
classNameBindings: ['reverseColors']
});