fix: implemented suggestions

This commit is contained in:
shariquerik 2021-03-09 15:18:44 +05:30
parent e8d050a4f1
commit 3717c98154

View file

@ -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
},
{