Skip to content

Commit

Permalink
Fix LDAP domain value in Settings.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
stephdl committed Mar 18, 2024
1 parent 2658f93 commit d361401
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -317,13 +317,13 @@ export default {
label: this.$t("settings.internal_authentication"),
value: "-",
});
// force to reload value after dom update
this.$nextTick(() => {
this.ldap_domain = config.ldap_domain;
if (!this.ldap_domain) {
this.ldap_domain = "-";
}
});
// force to reload value after dom update
// this.$nextTick(() => {
// });
this.loading.getConfiguration = false;
// set already_set to true if the configuration is not empty
if (
Expand Down

0 comments on commit d361401

Please sign in to comment.