diff --git a/lms/www/batch/quiz.js b/lms/www/batch/quiz.js index 6a0fc2ff..7774ad63 100644 --- a/lms/www/batch/quiz.js +++ b/lms/www/batch/quiz.js @@ -179,11 +179,11 @@ const validate_questions = () => { questions.forEach((question, index) => { if (!question.question) { - frappe.throw(__("Please add question in row ") + (index + 1)); + frappe.throw(__("Please add question in row") + " " + (index + 1)); } if (!question.marks) { - frappe.throw(__("Please add marks in row ") + (index + 1)); + frappe.throw(__("Please add marks in row") + " " + (index + 1)); } }); };