diff --git a/lms/static/coffee/src/staff_grading/staff_grading.coffee b/lms/static/coffee/src/staff_grading/staff_grading.coffee
index e5e8d93634..e5fba57710 100644
--- a/lms/static/coffee/src/staff_grading/staff_grading.coffee
+++ b/lms/static/coffee/src/staff_grading/staff_grading.coffee
@@ -343,7 +343,7 @@ class StaffGrading
meta_list.append("
Pending: #{@num_pending}")
meta_list.append("Graded: #{@num_graded}")
meta_list.append("Needed for ML: #{Math.max(@min_for_ml - @num_graded)}")
- @problem_meta_info.append(meta_list)
+ @problem_meta_info.html(meta_list)
@prompt_container.html(@prompt)
@prompt_name_container.html("#{@prompt_name}")
diff --git a/lms/static/sass/course/_staff_grading.scss b/lms/static/sass/course/_staff_grading.scss
index 1122129b9d..3de22d40bb 100644
--- a/lms/static/sass/course/_staff_grading.scss
+++ b/lms/static/sass/course/_staff_grading.scss
@@ -49,7 +49,7 @@ div.staff-grading {
padding: 15px;
margin-left: 0px;
}
- .ml-error-info-container,
+ .meta-info-wrapper
{
background-color: #eee;
padding:15px;
diff --git a/lms/templates/instructor/staff_grading.html b/lms/templates/instructor/staff_grading.html
index db500fde84..dd5aa9ae08 100644
--- a/lms/templates/instructor/staff_grading.html
+++ b/lms/templates/instructor/staff_grading.html
@@ -18,7 +18,7 @@