Add select filtering for domains if more than 10

This commit is contained in:
Johannes Zellner
2025-06-12 09:31:28 +02:00
parent a07d7ffdec
commit 674f158877
2 changed files with 5 additions and 5 deletions
@@ -241,7 +241,7 @@ defineExpose({
<label for="location">{{ $t('appstore.installDialog.location') }}</label>
<InputGroup>
<TextInput id="location" ref="locationInput" v-model="location" style="flex-grow: 1"/>
<SingleSelect v-model="domain" :options="domains" option-label="domain" option-key="domain" @select="onDomainChange()"/>
<SingleSelect v-model="domain" :options="domains" option-label="domain" option-key="domain" @select="onDomainChange()" search-threshold="10"/>
</InputGroup>
<div class="text-danger" v-if="formError.location">{{ formError.location }}</div>
</FormGroup>