fix: translations

This commit is contained in:
Jannat Patel
2023-10-20 11:08:10 +05:30
parent fe98265636
commit d0b236e381

View File

@@ -179,11 +179,11 @@ const validate_questions = () => {
questions.forEach((question, index) => { questions.forEach((question, index) => {
if (!question.question) { if (!question.question) {
frappe.throw(__("Please add question in row ") + (index + 1)); frappe.throw(__("Please add question in row") + " " + (index + 1));
} }
if (!question.marks) { if (!question.marks) {
frappe.throw(__("Please add marks in row ") + (index + 1)); frappe.throw(__("Please add marks in row") + " " + (index + 1));
} }
}); });
}; };