Skip to content

Commit

Permalink
Removes invisible attribute for smptpass field
Browse files Browse the repository at this point in the history
  • Loading branch information
egarciadiaz committed Jun 13, 2024
1 parent 2c5a34b commit 0c957e1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions poweremail_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@ class poweremail_core_accounts(osv.osv):
'smtpuname': fields.char('User Name',
size=120, required=False,
readonly=True, states={'draft':[('readonly', False)]}),
'smtppass': fields.char('Password',
size=120, invisible=True,
'smtppass': fields.char('Password', size=120,
required=False, readonly=True,
states={'draft':[('readonly', False)]}),
'smtptls': fields.boolean(
Expand Down

0 comments on commit 0c957e1

Please sign in to comment.