FIX: Modal flash tracking (#24923)

Super minor, without tracking, these error messages weren't being shown.
This commit is contained in:
Penar Musaraj 2023-12-18 09:34:19 -05:00 committed by GitHub
parent 6d7dd658a4
commit 092633c14f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,7 @@ export default class Reseed extends Component {
@tracked reseeding = false;
@tracked categories = null;
@tracked topics = null;
@tracked flash;
constructor() {
super(...arguments);

View File

@ -9,6 +9,7 @@ import I18n from "discourse-i18n";
export default class ChangeOwnerModal extends Component {
@tracked saving = false;
@tracked newOwner = null;
@tracked flash;
get buttonDisabled() {
return this.saving || isEmpty(this.newOwner);