Skip to content

Commit 09119f4

Browse files
committed
Sort text labels alphabetically
1 parent 2e6f141 commit 09119f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/views/CollectionEntry.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const isLoading = ref<boolean>(true);
8989
const asyncOperationRunning = ref<boolean>(false);
9090
9191
const availableCollectionLabels = computed(getAvailableCollectionLabels);
92-
const availableTextLabels = computed(getAvailableTextLabels);
92+
const availableTextLabels = computed(() => getAvailableTextLabels().sort());
9393
9494
useTitle(
9595
computed(() => `Collection | ${collectionAccessObject.value?.collection?.data.label ?? ''}`),

0 commit comments

Comments
 (0)