fix: solve conflict after pull

This commit is contained in:
riefive
2025-10-04 09:07:03 +07:00
3 changed files with 4 additions and 2 deletions
+3
View File
@@ -186,6 +186,8 @@ export function genCrudHandler<T = any>(crud: {
if (refresh) refresh()
},
onFinally: () => {
setTimeout(refresh, 300)
onResetState()
isProcessing.value = false
},
})
@@ -194,6 +196,7 @@ export function genCrudHandler<T = any>(crud: {
function handleCancelForm(reset: () => void) {
isFormEntryDialogOpen.value = false
isReadonly.value = false
onResetState()
setTimeout(reset, 300)
}