diff --git a/cms/templates/js/publish-editor.underscore b/cms/templates/js/publish-editor.underscore index 27c4ce2902..519564f721 100644 --- a/cms/templates/js/publish-editor.underscore +++ b/cms/templates/js/publish-editor.underscore @@ -6,13 +6,13 @@ <% _.each(xblockInfo.get('child_info').children, function(subsection) { %> <% if (subsection.isPublishable()) { %>
  • -

    <%= subsection.get('display_name') %>

    +

    <%- subsection.get('display_name') %>

      <% _.each(subsection.get('child_info').children, function(unit) { %> <% if (unit.isPublishable()) { %>
    1. - <%= unit.get('display_name') %> + <%- unit.get('display_name') %>
    2. <% } %> <% }); %> @@ -27,7 +27,7 @@ <% _.each(xblockInfo.get('child_info').children, function(unit) { %> <% if (unit.isPublishable()) { %>
    3. - <%= unit.get('display_name') %> + <%- unit.get('display_name') %>
    4. <% } %> <% }); %>