fix: refs #8683 update fetchFilter to use computed sortBy value
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 09:14:18 +01:00
parent b311fe3449
commit d893505cd6
1 changed files with 2 additions and 1 deletions

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)