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

12 lines
306 B
Plaintext
Raw Normal View History

import { match } from "@ember/object/computed";
import Component from "@ember/component";
export default Component.extend({
allTime: true,
2018-06-15 23:03:24 +08:00
tagName: "tr",
reverseColors: match(
2018-06-15 23:03:24 +08:00
"report.type",
/^(time_to_first_response|topics_with_no_response)$/
),
classNameBindings: ["reverseColors"]
});