fix: Linting fixes

This commit is contained in:
Deepesh Garg
2020-02-25 17:11:33 +05:30
parent 317b53a8b6
commit 39790f05e7

View File

@@ -38,11 +38,11 @@ frappe.ui.form.on('Chart of Accounts Importer', {
if (frm.doc.template_type == 'Sample Template') {
frm.set_df_property('template_type', 'description',
`The Sample Template contains all the required accounts pre filled in the template.
You can add more accounts or change existing accounts in the template as per your choice.`)
You can add more accounts or change existing accounts in the template as per your choice.`);
} else {
frm.set_df_property('template_type', 'description',
`The Blank Template contains just the account type and root type required to build the Chart
of Accounts. Please enter the account names and add more rows as per your requirement.`)
of Accounts. Please enter the account names and add more rows as per your requirement.`);
}
},