From 402a1766bd6d55dc1d5cbad1383d20f59db69035 Mon Sep 17 00:00:00 2001 From: Waheed Ahmed Date: Fri, 14 Feb 2014 18:32:50 +0500 Subject: [PATCH] Added space between counts on staff grading panel. ORA-294 --- lms/static/coffee/src/staff_grading/staff_grading.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/static/coffee/src/staff_grading/staff_grading.coffee b/lms/static/coffee/src/staff_grading/staff_grading.coffee index 6e329ac0ba..a06405aad0 100644 --- a/lms/static/coffee/src/staff_grading/staff_grading.coffee +++ b/lms/static/coffee/src/staff_grading/staff_grading.coffee @@ -427,8 +427,8 @@ class @StaffGrading else if @state == state_grading @ml_error_info_container.html(@ml_error_info) - available = _.template(gettext("<%= num %> available"), {num: @num_pending}) - graded = _.template(gettext("<%= num %> graded"), {num: @num_graded}) + available = _.template(gettext("<%= num %> available "), {num: @num_pending}) + graded = _.template(gettext("<%= num %> graded "), {num: @num_graded}) needed = _.template(gettext("<%= num %> more needed to start ML"), {num: Math.max(@min_for_ml - @num_graded, 0)}) meta_list = $("
")