Fix(TicketService): Sort by name in description #1253

Merged
alexm merged 4 commits from Fix-TicketServicesSortByName into dev 2025-01-21 06:50:58 +00:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 0b52be2568 - Show all commits

View File

@ -7,7 +7,9 @@ import { isDialogOpened } from 'src/filters';
const arrayDataStore = useArrayDataStore(); 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 (!key) throw new Error('ArrayData: A key is required to use this composable');
if (!arrayDataStore.get(key)) arrayDataStore.set(key); if (!arrayDataStore.get(key)) arrayDataStore.set(key);