fix: refs #8683 update computedSortBy to append ' ASC' to optionLabel
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
BENJAMIN ESTEVE DIAZ CANO 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) => {