fix: refs #7957 add missing closing brace
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-12-19 13:42:48 +01:00
parent ea347338f4
commit de87acd5cc
1 changed files with 1 additions and 0 deletions

View File

@ -311,6 +311,7 @@ export function useArrayData(key = useRoute().meta.moduleName, userOptions) {
store.data.push(val);
}
}
}
const totalRows = computed(() => (store.data && store.data.length) || 0);
const isLoading = computed(() => store.isLoading || false);