fix: refs #8683 update computedSortBy to append ' ASC' to optionLabel
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
d893505cd6
commit
68af7a50fa
|
@ -153,7 +153,7 @@ const value = computed({
|
|||
});
|
||||
|
||||
const computedSortBy = computed(() => {
|
||||
return $props.sortBy || $props.optionLabel;
|
||||
return $props.sortBy || $props.optionLabel + ' ASC';
|
||||
});
|
||||
|
||||
watch(options, (newValue) => {
|
||||
|
|
Loading…
Reference in New Issue