diff --git a/cms/static/js/views/pages/course_outline.js b/cms/static/js/views/pages/course_outline.js
index 00335e92a3..cd86d63997 100644
--- a/cms/static/js/views/pages/course_outline.js
+++ b/cms/static/js/views/pages/course_outline.js
@@ -82,7 +82,7 @@ define([
}
/* globals course */
- if (this.model.get('highlights_enabled') && course.get('self_paced')) {
+ if (this.model.get('highlights_enabled')) {
this.highlightsEnableView = new CourseHighlightsEnableView({
el: this.$('.status-highlights-enabled'),
model: this.model
diff --git a/cms/templates/js/course-outline.underscore b/cms/templates/js/course-outline.underscore
index ac9fb06e21..e41860960e 100644
--- a/cms/templates/js/course-outline.underscore
+++ b/cms/templates/js/course-outline.underscore
@@ -212,7 +212,7 @@ if (is_proctored_exam) {
<% } %>
- <% if (xblockInfo.get('highlights_enabled') && course.get('self_paced') && xblockInfo.isChapter()) { %>
+ <% if (xblockInfo.get('highlights_enabled') && xblockInfo.isChapter()) { %>
<% var number_of_highlights = (xblockInfo.get('highlights') || []).length; %>