0
0
Fork 0

Merge branch 'dev' into Fix-TicketServicesSortByName

This commit is contained in:
Javier Segarra 2025-01-20 21:33:13 +00:00
commit 0b52be2568
1 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,9 @@ import { isDialogOpened } from 'src/filters';
const arrayDataStore = useArrayDataStore();
export function useArrayData(key = useRoute().meta.moduleName, userOptions) {
export function useArrayData(key, userOptions) {
key ??= useRoute().meta.moduleName;
if (!key) throw new Error('ArrayData: A key is required to use this composable');
if (!arrayDataStore.get(key)) arrayDataStore.set(key);