Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
simplify html code a bit
Co-authored-by: Pytal <[email protected]>
Signed-off-by: Carl Schwan <[email protected]>
  • Loading branch information
2 people authored and szaimen committed Dec 27, 2022
commit 3e16f5b6dd00848a5ef99355d8229e458549d7ed
9 changes: 3 additions & 6 deletions apps/settings/src/components/UserList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@
autocomplete="off"
autocorrect="off"
class="modal__item"
name="displayname">
</NcTextField>
name="displayname" />
<NcPasswordField id="newuserpassword"
ref="newuserpassword"
:value.sync="newUser.password"
Expand All @@ -66,8 +65,7 @@
autocomplete="new-password"
autocorrect="off"
class="modal__item"
name="password">
</NcPasswordField>
name="password" />
<NcTextField id="newemail"
:value.sync="newUser.mailAddress"
:label="t('settings', 'Email')"
Expand All @@ -78,8 +76,7 @@
autocorrect="off"
class="modal__item"
name="email"
type="email">
</NcTextField>
type="email" />
<div class="groups modal__item">
<!-- hidden input trick for vanilla html5 form validation -->
<input v-if="!settings.isAdmin"
Expand Down