From 7e749c518a76d8b5f28feb9131e24c8d75de0242 Mon Sep 17 00:00:00 2001 From: Johan Castiblanco Date: Wed, 31 Jan 2024 15:21:31 -0500 Subject: [PATCH] Revert "feat: update removing priority from nelp koa (#2)" This reverts commit 288d84f5af217024dddbd3ce8bb50cfacc917ff7. --- lms/djangoapps/courseware/tabs.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lms/djangoapps/courseware/tabs.py b/lms/djangoapps/courseware/tabs.py index 94caf0a4fb9..2a67b6454e4 100644 --- a/lms/djangoapps/courseware/tabs.py +++ b/lms/djangoapps/courseware/tabs.py @@ -61,6 +61,7 @@ class SyllabusTab(EnrolledTab): """ type = 'syllabus' title = gettext_noop('Syllabus') + priority = 80 view_name = 'syllabus' allow_multiple = True is_default = False @@ -78,6 +79,7 @@ class ProgressTab(EnrolledTab): """ type = 'progress' title = gettext_noop('Progress') + priority = 20 view_name = 'progress' is_hideable = True is_default = False @@ -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):