From 68af7a50fa7410cedb20b67b14e4faa21b7b5498 Mon Sep 17 00:00:00 2001 From: benjaminedc Date: Fri, 7 Mar 2025 11:59:22 +0100 Subject: [PATCH] fix: refs #8683 update computedSortBy to append ' ASC' to optionLabel --- src/components/common/VnSelect.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/common/VnSelect.vue b/src/components/common/VnSelect.vue index 9405baa4f..296a212e7 100644 --- a/src/components/common/VnSelect.vue +++ b/src/components/common/VnSelect.vue @@ -153,7 +153,7 @@ const value = computed({ }); const computedSortBy = computed(() => { - return $props.sortBy || $props.optionLabel; + return $props.sortBy || $props.optionLabel + ' ASC'; }); watch(options, (newValue) => {