mirror of
https://github.com/discourse/discourse.git
synced 2025-03-25 17:02:26 +08:00
FIX: Modal flash tracking (#24923)
Super minor, without tracking, these error messages weren't being shown.
This commit is contained in:
parent
6d7dd658a4
commit
092633c14f
@ -12,6 +12,7 @@ export default class Reseed extends Component {
|
|||||||
@tracked reseeding = false;
|
@tracked reseeding = false;
|
||||||
@tracked categories = null;
|
@tracked categories = null;
|
||||||
@tracked topics = null;
|
@tracked topics = null;
|
||||||
|
@tracked flash;
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super(...arguments);
|
super(...arguments);
|
||||||
|
@ -9,6 +9,7 @@ import I18n from "discourse-i18n";
|
|||||||
export default class ChangeOwnerModal extends Component {
|
export default class ChangeOwnerModal extends Component {
|
||||||
@tracked saving = false;
|
@tracked saving = false;
|
||||||
@tracked newOwner = null;
|
@tracked newOwner = null;
|
||||||
|
@tracked flash;
|
||||||
|
|
||||||
get buttonDisabled() {
|
get buttonDisabled() {
|
||||||
return this.saving || isEmpty(this.newOwner);
|
return this.saving || isEmpty(this.newOwner);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user