Skip to content

Commit

Permalink
fixup! Show password on password field
Browse files Browse the repository at this point in the history
Signed-off-by: greta <[email protected]>
  • Loading branch information
GretaD committed Dec 22, 2023
1 parent b522bc5 commit 3b2c0b0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/AccountForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@
:class="{ 'account-form__label': hasPasswordAlternatives, 'account-form__label--required': !hasPasswordAlternatives }">{{ t('mail', 'Password') }}</label>

<NcPasswordField id="auto-password"
:value.sync="autoConfig.password"
:disabled="loading"
type="password"
:label="t('mail', 'Password')"
:required="!hasPasswordAlternatives"
:value.sync="password"
@change="clearFeedback" />
</Tab>
<Tab id="manual" key="manual" :name="t('mail', 'Manual')">
Expand Down Expand Up @@ -116,8 +117,8 @@
<label v-if="!useOauth" for="man-imap-password" class="account-form__label--required">{{ t('mail', 'IMAP Password') }}</label>
<NcPasswordField v-if="!useOauth"
id="man-imap-password"
:value.sync="password"
type="password"
:value.sync="manualConfig.imapPassword"
:label="t('mail', 'IMAP Password')"
:disabled="loading"
required
Expand Down Expand Up @@ -188,7 +189,8 @@
<label v-if="!useOauth" for="man-smtp-password" class="account-form__label--required">{{ t('mail', 'SMTP Password') }}</label>
<NcPasswordField v-if="!useOauth"
id="man-smtp-password"
:value.sync="password"
type="password"
:value.sync="manualConfig.smtpPassword"
:lable="t('mail', 'SMTP Password')"
:disabled="loading"
required
Expand Down

0 comments on commit 3b2c0b0

Please sign in to comment.