Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cms/djangoapps/course_creators/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cms/static/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
};
};

Expand Down