Skip to content
Open
Changes from all commits
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
1 change: 1 addition & 0 deletions src/components/AccountForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
<h3>{{ t('mail', 'SMTP Settings') }}</h3>
<NcInputField
id="man-smtp-host"
ref="smtpHost"

Check warning on line 144 in src/components/AccountForm.vue

View workflow job for this annotation

GitHub Actions / NPM lint

'smtpHost' is defined as ref, but never used
:value.sync="manualConfig.smtpHost"
:label="t('mail', 'SMTP Host')"
type="text"
Expand Down Expand Up @@ -364,6 +364,7 @@

return !this.emailAddress || !this.isValidEmail(this.emailAddress)
|| (!this.googleOauthUrl && !this.autoConfig.password)
|| (!this.microsoftOauthUrl && !this.autoConfig.password)
},

isDisabledManual() {
Expand Down
Loading