FIX: Hide d-modal during page load (#21563)

Followup to 4bc769cac0
This commit is contained in:
David Taylor 2023-05-15 21:43:21 +01:00 committed by GitHub
parent 21ec70b509
commit ee537a7ac1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2,5 +2,5 @@ import Controller from "@ember/controller";
import { tracked } from "@glimmer/tracking"; import { tracked } from "@glimmer/tracking";
export default class ModalController extends Controller { export default class ModalController extends Controller {
@tracked hidden; @tracked hidden = true;
} }