diff --git a/cms/djangoapps/course_creators/admin.py b/cms/djangoapps/course_creators/admin.py index 45ff82ec49cc..a1d34b3897fc 100644 --- a/cms/djangoapps/course_creators/admin.py +++ b/cms/djangoapps/course_creators/admin.py @@ -82,7 +82,7 @@ class CourseCreatorAdmin(admin.ModelAdmin): # Fields that filtering support list_filter = ['state', 'state_changed'] # Fields that search supports. - search_fields = ['user__username', 'user__email', 'state', 'note', 'organizations'] + search_fields = ['user__username', 'user__email', 'state', 'note'] # Turn off the action bar (we have no bulk actions) actions = None form = CourseCreatorForm diff --git a/cms/static/js/index.js b/cms/static/js/index.js index 432f99cd6690..09c7de843e1a 100644 --- a/cms/static/js/index.js +++ b/cms/static/js/index.js @@ -168,7 +168,7 @@ define(['domReady', 'jquery', 'underscore', 'js/utils/cancel_on_escape', 'js/vie $('.libraries-tab').toggleClass('active', tab === 'libraries-tab'); // Also toggle this course-related notice shown below the course tab, if it is present: - $('.wrapper-creationrights').toggleClass('is-hidden', tab !== 'courses'); + $('.wrapper-creationrights').toggleClass('is-hidden', tab !== 'courses-tab'); }; };