mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:19:05 +08:00
48193767bf
Automatically generated by `eslint --fix` to satisfy the updated configuration
23 lines
569 B
JavaScript
23 lines
569 B
JavaScript
import Component from "@ember/component";
|
|
import { classNames } from "@ember-decorators/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 "";
|
|
}
|
|
}
|