Skip to content

Commit

Permalink
Merge pull request #15 from NethServer:lowercaseUser
Browse files Browse the repository at this point in the history
Convert admin user names to lowercase in Settings.vue
  • Loading branch information
stephdl authored Mar 22, 2024
2 parents 96bf41f + 9a36012 commit 0718b53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ export default {
mail_server: mail_server_tmp,
mail_domain: mail_domain_tmp,
ldap_domain: this.ldap_domain,
admin_users: this.admin_users.split("\n").join(",").trim(),
admin_users: this.admin_users.split("\n").join(",").toLowerCase().trim(),
workers_count: this.workers_count.toString(),
auxiliary_account: this.isAuxiliaryAccountEnabled,
},
Expand Down

0 comments on commit 0718b53

Please sign in to comment.