fix: change button label in issue

Changed the label of the button from "Make" to "Create" so that it is consistent with other DocTypes.

Before:
This commit is contained in:
Michelle Alva 2020-06-27 09:27:45 +05:30 committed by GitHub
parent 14ad9e789d
commit 2f37c447dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ frappe.ui.form.on("Issue", {
method: "erpnext.support.doctype.issue.issue.make_task",
frm: frm
});
}, __("Make"));
}, __("Create"));
} else {
if (frm.doc.service_level_agreement) {
@ -232,4 +232,4 @@ function get_status(variance) {
} else {
return {"diff_display": "Failed", "indicator": "red"};
}
}
}