Skip to content

Commit

Permalink
feat: update removing priority from nelp koa
Browse files Browse the repository at this point in the history
Remove priority from static main tabs to make tab sorting function works correctly

(cherry picked from commit 2ca69ec19b3227e9efbe7481e0abe3ff44c8f11c)
  • Loading branch information
Arti3DPlayer authored and johanseto committed Oct 6, 2022
1 parent aa42d08 commit c65290c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lms/djangoapps/courseware/tabs.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ class SyllabusTab(EnrolledTab):
"""
type = 'syllabus'
title = gettext_noop('Syllabus')
priority = 30
view_name = 'syllabus'
allow_multiple = True
is_default = False
Expand All @@ -104,7 +103,6 @@ class ProgressTab(EnrolledTab):
"""
type = 'progress'
title = gettext_noop('Progress')
priority = 40
view_name = 'progress'
is_hideable = True
is_default = False
Expand Down Expand Up @@ -328,7 +326,6 @@ class DatesTab(EnrolledTab):
type = "dates"
title = gettext_noop(
"Dates") # We don't have the user in this context, so we don't want to translate it at this level.
priority = 50
view_name = "dates"
is_dynamic = True

Expand Down

0 comments on commit c65290c

Please sign in to comment.