From d0b236e381decca0dc651552fdcef7d1cf2def29 Mon Sep 17 00:00:00 2001 From: Jannat Patel Date: Fri, 20 Oct 2023 11:08:10 +0530 Subject: [PATCH] fix: translations --- lms/www/batch/quiz.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)); } }); };