Small bugfix for upcoming update

This commit is contained in:
2024-03-04 14:32:17 -05:00
parent 8daeab6abd
commit ce95171e4f
3 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ export default class Modals {
static get hasModalOpen() {return !!document.getElementsByClassName("bd-modal").length;}
static get ModalActions() {
return this._ModalActions ??= WebpackModules.getByProps("openModal", "closeModal");
return this._ModalActions ??= WebpackModules.getByProps("openModal", "closeModal", "updateModal");
}
static get ModalQueue() {return this._ModalQueue ??= [];}