mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
a433b30650
This conversion was achieved using the ember-native-class-codemod, plus a handful of manual fixes/tweaks
23 lines
569 B
JavaScript
23 lines
569 B
JavaScript
import { classNames } from "@ember-decorators/component";
|
|
import Component from "@ember/component";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
|
|
@classNames("penalty-history")
|
|
export default class AdminPenaltyHistory extends Component {
|
|
@discourseComputed("user.penalty_counts.suspended")
|
|
suspendedCountClass(count) {
|
|
if (count > 0) {
|
|
return "danger";
|
|
}
|
|
return "";
|
|
}
|
|
|
|
@discourseComputed("user.penalty_counts.silenced")
|
|
silencedCountClass(count) {
|
|
if (count > 0) {
|
|
return "danger";
|
|
}
|
|
return "";
|
|
}
|
|
}
|