Merge pull request #19163 from edx/schen/EDUCATOR-3582-comments

Take away the comments column on grade override modal dialog
This commit is contained in:
Simon Chen
2018-10-26 10:40:52 -04:00
committed by GitHub
2 changed files with 2 additions and 48 deletions

View File

@@ -21,7 +21,6 @@
<th><%- strLib.studentNameHeading %></th>
<th id="auto-grade-header"></th>
<th id="adjusted-grade-header"></th>
<th><%- strLib.commentHeading %></th>
</thead>
<tbody>
<% _.each(studentsData, function(student){ %>
@@ -32,9 +31,6 @@
<td class="user-adjusted-grade" data-username="<%- student.username %>">
<input type=text>/<span></span>
</td>
<td class="user-grade-comment" data-username="<%- student.username %>">
<textarea></textarea>
</td>
</tr>
<% }) %>
</tbody>