mirror of
https://github.com/nextcloud/server.git
synced 2026-02-19 02:38:40 -05:00
feat(user_ldap): Disable countInBaseDN button when base is empty
Signed-off-by: Louis Chmn <louis@chmn.me>
This commit is contained in:
parent
3906998164
commit
f57fb6eee5
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@
|
|||
<NcButton :disabled="loadingGuessBaseDN" @click="guessBaseDN">
|
||||
{{ t('user_ldap', 'Detect Base DN') }}
|
||||
</NcButton>
|
||||
<NcButton :disabled="loadingCountInBaseDN" @click="countInBaseDN">
|
||||
<NcButton :disabled="loadingCountInBaseDN || ldapConfigProxy.ldapBase === ''" @click="countInBaseDN">
|
||||
{{ t('user_ldap', 'Test Base DN') }}
|
||||
</NcButton>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue