refactor: refs #8683 enhance sorting logic in VnSelect component #1522

Merged
alexm merged 47 commits from 8683-vnSelectSortByOptionLabel into dev 2025-03-25 13:15:00 +00:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit d893505cd6 - Show all commits

View File

@ -220,7 +220,8 @@ function filter(val, options) {
async function fetchFilter(val) {
if (!$props.url) return;
const { fields, include, sortBy, limit } = $props;
const { fields, include, limit } = $props;
const sortBy = computedSortBy.value;
const key =
optionFilterValue.value ??
(new RegExp(/\d/g).test(val)