Skip to content

Commit bc6f42f

Browse files
committed
fix: fix before open/close handlers for the AFCL dialog
1 parent cec1b5f commit bc6f42f

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

adminforth/spa/src/afcl/Dialog.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,16 +119,10 @@ onUnmounted(() => {
119119
})
120120
121121
function open() {
122-
if (props.beforeOpenFunction) {
123-
props.beforeOpenFunction();
124-
}
125122
modal.value?.show();
126123
}
127124
128125
function close() {
129-
if (props.beforeCloseFunction) {
130-
props.beforeCloseFunction();
131-
}
132126
modal.value?.hide();
133127
}
134128

0 commit comments

Comments
 (0)