Skip to content

Commit

Permalink
Revert "feat: update removing priority from nelp koa (#2)"
Browse files Browse the repository at this point in the history
This reverts commit 288d84f.
  • Loading branch information
johanseto committed Jan 31, 2024
1 parent 6e1c701 commit 7e749c5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lms/djangoapps/courseware/tabs.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ class SyllabusTab(EnrolledTab):
"""
type = 'syllabus'
title = gettext_noop('Syllabus')
priority = 80
view_name = 'syllabus'
allow_multiple = True
is_default = False
Expand All @@ -78,6 +79,7 @@ class ProgressTab(EnrolledTab):
"""
type = 'progress'
title = gettext_noop('Progress')
priority = 20
view_name = 'progress'
is_hideable = True
is_default = False
Expand Down Expand Up @@ -303,6 +305,7 @@ class DatesTab(EnrolledTab):
type = "dates"
# We don't have the user in this context, so we don't want to translate it at this level.
title = gettext_noop("Dates")
priority = 30
view_name = "dates"

def __init__(self, tab_dict):
Expand Down

0 comments on commit 7e749c5

Please sign in to comment.