0
0
Fork 0

fix: refs #8683 update computedSortBy to append ' ASC' to optionLabel

This commit is contained in:
Benjamin Esteve 2025-03-07 11:59:22 +01:00
parent d893505cd6
commit 68af7a50fa
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ const value = computed({
});
const computedSortBy = computed(() => {
return $props.sortBy || $props.optionLabel;
return $props.sortBy || $props.optionLabel + ' ASC';
});
watch(options, (newValue) => {