mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 19:31:44 +08:00
![David Taylor](/assets/img/avatar_default.png)
Enables our new eslint rules which enforce consistent i18n imports. For more info, see 0d58b40cd7
19 lines
474 B
JavaScript
19 lines
474 B
JavaScript
import Component from "@glimmer/component";
|
|
import { tracked } from "@glimmer/tracking";
|
|
import { i18n } from "discourse-i18n";
|
|
|
|
export default class MergeUsersConfirmation extends Component {
|
|
@tracked value;
|
|
|
|
get mergeDisabled() {
|
|
return !this.value || this.text !== this.value;
|
|
}
|
|
|
|
get text() {
|
|
return i18n("admin.user.merge.confirmation.text", {
|
|
username: this.args.model.username,
|
|
targetUsername: this.args.model.targetUsername,
|
|
});
|
|
}
|
|
}
|