fix: the bug in the lock method of the vbenModal component (#6648)

This commit is contained in:
panda7
2025-08-21 15:17:55 +08:00
committed by GitHub
parent 93f0eea4e7
commit 2cc78f925f

View File

@@ -107,7 +107,6 @@ export class ModalApi {
this.store.setState((prev) => ({
...prev,
isOpen: false,
submitting: false,
}));
}
}
@@ -162,7 +161,11 @@ export class ModalApi {
}
open() {
this.store.setState((prev) => ({ ...prev, isOpen: true }));
this.store.setState((prev) => ({
...prev,
isOpen: true,
submitting: false,
}));
}
setData<T>(payload: T) {