diff --git a/dev/Component/EmailAddresses.js b/dev/Component/EmailAddresses.js index 12eecd41c..e6257261f 100644 --- a/dev/Component/EmailAddresses.js +++ b/dev/Component/EmailAddresses.js @@ -18,7 +18,7 @@ export class EmailAddressesComponent { const self = this, input = createElement('input',{type:"text", list:datalist.id, - autocomplete:"off", autocorrect:"off", autocapitalize:"off", spellcheck:"false"}), + autocomplete:"off", autocorrect:"off", autocapitalize:"off"}), // In Chrome we have no access to dataTransfer.getData unless it's the 'drop' event // In Chrome Mobile dataTransfer.types.includes(contentType) fails, only text/plain is set validDropzone = () => dragAddress?.li.parentNode !== self.ul, diff --git a/dev/Component/TextArea.js b/dev/Component/TextArea.js index bc2ad55a9..f9eedffcb 100644 --- a/dev/Component/TextArea.js +++ b/dev/Component/TextArea.js @@ -8,6 +8,5 @@ export class TextAreaComponent extends AbstractInput { super(params); this.rows = params.rows || 5; - this.spellcheck = !!params.spellcheck; } } diff --git a/plugins/change-password/templates/SettingsChangePassword.html b/plugins/change-password/templates/SettingsChangePassword.html index ac0e62d20..83f9bd215 100644 --- a/plugins/change-password/templates/SettingsChangePassword.html +++ b/plugins/change-password/templates/SettingsChangePassword.html @@ -1,19 +1,19 @@