@@ -103,7 +103,7 @@ const NotificationsEmail = () => {
103103 otherwise : Yup . string ( ) . nullable ( ) ,
104104 } )
105105 . matches (
106- / - - - - - B E G I N P G P P R I V A T E K E Y B L O C K - - - - - .+ - - - - - E N D P G P P R I V A T E K E Y B L O C K - - - - - / s ,
106+ / - - - - - B E G I N P G P P R I V A T E K E Y B L O C K - - - - - .+ - - - - - E N D P G P P R I V A T E K E Y B L O C K - - - - - / ,
107107 intl . formatMessage ( messages . validationPgpPrivateKey )
108108 ) ,
109109 pgpPassword : Yup . string ( ) . when ( 'pgpPrivateKey' , {
@@ -263,6 +263,10 @@ const NotificationsEmail = () => {
263263 name = "emailFrom"
264264 type = "text"
265265 inputMode = "email"
266+ autoComplete = "off"
267+ data-1pignore = "true"
268+ data-lpignore = "true"
269+ data-bwignore = "true"
266270 />
267271 </ div >
268272 { errors . emailFrom &&
@@ -284,6 +288,10 @@ const NotificationsEmail = () => {
284288 name = "smtpHost"
285289 type = "text"
286290 inputMode = "url"
291+ autoComplete = "off"
292+ data-1pignore = "true"
293+ data-lpignore = "true"
294+ data-bwignore = "true"
287295 />
288296 </ div >
289297 { errors . smtpHost &&
@@ -305,6 +313,10 @@ const NotificationsEmail = () => {
305313 type = "text"
306314 inputMode = "numeric"
307315 className = "short"
316+ autoComplete = "off"
317+ data-1pignore = "true"
318+ data-lpignore = "true"
319+ data-bwignore = "true"
308320 />
309321 { errors . smtpPort &&
310322 touched . smtpPort &&
@@ -358,7 +370,15 @@ const NotificationsEmail = () => {
358370 </ label >
359371 < div className = "form-input-area" >
360372 < div className = "form-input-field" >
361- < Field id = "authUser" name = "authUser" type = "text" />
373+ < Field
374+ id = "authUser"
375+ name = "authUser"
376+ type = "text"
377+ autoComplete = "off"
378+ data-1pignore = "true"
379+ data-lpignore = "true"
380+ data-bwignore = "true"
381+ />
362382 </ div >
363383 </ div >
364384 </ div >
@@ -368,12 +388,7 @@ const NotificationsEmail = () => {
368388 </ label >
369389 < div className = "form-input-area" >
370390 < div className = "form-input-field" >
371- < SensitiveInput
372- as = "field"
373- id = "authPass"
374- name = "authPass"
375- autoComplete = "one-time-code"
376- />
391+ < SensitiveInput as = "field" id = "authPass" name = "authPass" />
377392 </ div >
378393 </ div >
379394 </ div >
@@ -398,6 +413,10 @@ const NotificationsEmail = () => {
398413 type = "textarea"
399414 rows = "10"
400415 className = "font-mono text-xs"
416+ autoComplete = "off"
417+ data-1pignore = "true"
418+ data-lpignore = "true"
419+ data-bwignore = "true"
401420 />
402421 </ div >
403422 { errors . pgpPrivateKey &&
@@ -425,7 +444,10 @@ const NotificationsEmail = () => {
425444 as = "field"
426445 id = "pgpPassword"
427446 name = "pgpPassword"
428- autoComplete = "one-time-code"
447+ autoComplete = "off"
448+ data-1pignore = "true"
449+ data-lpignore = "true"
450+ data-bwignore = "true"
429451 />
430452 </ div >
431453 { errors . pgpPassword &&
0 commit comments