Check bindPassword if bindDn is provided

This commit is contained in:
Johannes Zellner
2025-04-22 19:07:11 +02:00
parent 105bcf23be
commit d82a685d7f
+1 -2
View File
@@ -49,8 +49,7 @@ const isValid = computed(() => {
if (!url.value) return false;
if (!baseDn.value) return false;
if (!filter.value) return false;
// TODO check all
if (bindDn.value && !bindPassword.value) return false;
return true;
});