diff --git a/frontend/src/components/input/Multiselect.vue b/frontend/src/components/input/Multiselect.vue index d945e4e75..bc4731f46 100644 --- a/frontend/src/components/input/Multiselect.vue +++ b/frontend/src/components/input/Multiselect.vue @@ -324,7 +324,7 @@ const hasMultiple = computed(() => { return props.multiple && Array.isArray(internalValue.value) && internalValue.value.length > 0 }) -const removalAvailable = computed(() => !props.multiple && internalValue.value !== null && query.value !== '') +const removalAvailable = computed(() => !props.multiple && internalValue.value !== null && query.value !== '' && !(props.loading || localLoading.value)) function resetSelectedValue() { select(null) }