Skip to content

Commit b943488

Browse files
committed
ror lookup fix
1 parent bc6d878 commit b943488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Form/fields/FieldAffiliations.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ async function searchPhraseChanged() {
443443
apiResponse.value = [];
444444
445445
if (searchPhrase.value.length >= 3) {
446-
const apiUrl = useApiUrl(`rors/?searchPhrase=${searchPhrase.value}`);
446+
const {apiUrl} = useApiUrl(`rors/?searchPhrase=${searchPhrase.value}`);
447447
const {data, isSuccess, fetch} = useFetch(apiUrl, {method: 'GET'});
448448
449449
await fetch();

0 commit comments

Comments
 (0)