Allow to search after certain threshold in mailbox owner select

This commit is contained in:
Johannes Zellner
2025-09-24 16:56:10 +02:00
parent 8020bbd806
commit 073ece0527
3 changed files with 5 additions and 4 deletions

View File

@@ -123,7 +123,6 @@ defineExpose({
:title="$t('backups.configureBackupSchedule.title')"
reject-style="secondary"
:reject-label="$t('main.dialog.cancel')"
:reject-busy="busy"
:reject-active="!busy"
:confirm-label="$t('main.dialog.save')"
:confirm-busy="busy"

View File

@@ -111,7 +111,8 @@ defineExpose({
:confirm-busy="busy"
:confirm-active="!busy && name !== '' && domain !== ''"
reject-style="secondary"
:reject-label="busy ? null : $t('main.dialog.cancel')"
:reject-label="$t('main.dialog.cancel')"
:reject-active="!busy"
@confirm="onSubmit()"
>
<div>
@@ -132,7 +133,7 @@ defineExpose({
<FormGroup style="padding-bottom: 10px;">
<label>{{ $t('email.editMailboxDialog.owner') }}</label>
<SingleSelect v-model="ownerId" :options="usersAndGroups" option-key="id" option-label="name"/>
<SingleSelect v-model="ownerId" :options="usersAndGroups" :searchThreshold="10" option-key="id" option-label="name"/>
</FormGroup>
<Checkbox v-if="mailbox" v-model="active" :label="$t('email.updateMailboxDialog.activeCheckbox')"/>

View File

@@ -79,7 +79,8 @@ defineExpose({
:confirm-busy="busy"
:confirm-active="!busy && name !== '' && domain !== '' && membersText !== ''"
reject-style="secondary"
:reject-label="busy ? null : $t('main.dialog.cancel')"
:reject-label="$t('main.dialog.cancel')"
:reject-active="!busy"
@confirm="onSubmit()"
>
<div>