discourse/app/assets/javascripts/admin/components/admin-report-counts.js.es6

10 lines
237 B
Plaintext
Raw Normal View History

export default Ember.Component.extend({
allTime: true,
2018-06-15 11:03:24 -04:00
tagName: "tr",
reverseColors: Ember.computed.match(
"report.type",
/^(time_to_first_response|topics_with_no_response)$/
),
classNameBindings: ["reverseColors"]
});