Fixed most of the form/show pages

This commit is contained in:
Julien Nahum
2023-12-20 18:38:43 +01:00
parent af5656ce81
commit bab8517879
19 changed files with 317 additions and 335 deletions

View File

@@ -32,7 +32,7 @@ export const useContentStore = (mapKey = 'id') => {
})
}
function remove(item) {
content.value.remove(item[mapKey])
content.value.delete( typeof item === 'object' ? item[mapKey] : item)
}
function startLoading() {