fix: implemented suggestions
This commit is contained in:
parent
e8d050a4f1
commit
3717c98154
1 changed files with 5 additions and 4 deletions
|
|
@ -201,12 +201,13 @@ frappe.Application = Class.extend({
|
|||
|
||||
email_password_prompt: function(email_account,user,i) {
|
||||
var me = this;
|
||||
var d = new frappe.ui.Dialog({
|
||||
title: __('Please enter your password for: {0}', [email_account[i]["email_id"]]),
|
||||
let d = new frappe.ui.Dialog({
|
||||
title: __('Password missing in Email Account'),
|
||||
fields: [
|
||||
{ 'fieldname': 'password',
|
||||
{
|
||||
'fieldname': 'password',
|
||||
'fieldtype': 'Password',
|
||||
'label': 'Email Account Password',
|
||||
'label': __('Please enter the password for: {0}', [`<b>${email_account[i]["email_id"]}</b>`]),
|
||||
'reqd': 1
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue