fix: update list when update record
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Javier Segarra 2024-06-07 10:21:41 +02:00
parent 6c608e86e6
commit edad698f72
1 changed files with 1 additions and 2 deletions

View File

@ -49,11 +49,10 @@ const deleteAcl = async (id) => {
console.error('Error deleting Acl: ', error); console.error('Error deleting Acl: ', error);
} }
}; };
function showFormDialog(data) { function showFormDialog(data) {
formDialog.value = { formDialog.value = {
show: true, show: true,
formInitialData: data, formInitialData: { ...data },
}; };
} }
</script> </script>