diff --git a/frontend/src/pages/Batches.vue b/frontend/src/pages/Batches.vue index b9821622..43cc71de 100644 --- a/frontend/src/pages/Batches.vue +++ b/frontend/src/pages/Batches.vue @@ -155,7 +155,7 @@ const title = ref('') const certification = ref(false) const filters = ref({}) const is_student = computed(() => user.data?.is_student) -const currentTab = ref(is_student.value ? 'All' : 'Upcoming') +const currentTab = ref(is_student.value ? 'all' : 'upcoming') const orderBy = ref('start_date') const readOnlyMode = window.read_only_mode const router = useRouter() @@ -245,7 +245,7 @@ const updateTabFilter = () => { if (!user.data) { return } - if (currentTab.value == 'Enrolled' && is_student.value) { + if (currentTab.value == 'enrolled' && is_student.value) { filters.value['enrolled'] = 1 delete filters.value['start_date'] delete filters.value['published'] @@ -256,20 +256,20 @@ const updateTabFilter = () => { delete filters.value['start_date'] delete filters.value['published'] orderBy.value = 'start_date desc' - if (currentTab.value == 'Upcoming') { + if (currentTab.value == 'upcoming') { filters.value['start_date'] = ['>=', dayjs().format('YYYY-MM-DD')] filters.value['published'] = 1 orderBy.value = 'start_date' - } else if (currentTab.value == 'Archived') { + } else if (currentTab.value == 'archived') { filters.value['start_date'] = ['<=', dayjs().format('YYYY-MM-DD')] - } else if (currentTab.value == 'Unpublished') { + } else if (currentTab.value == 'unpublished') { filters.value['published'] = 0 } } } const updateStudentFilter = () => { - if (!user.data || (is_student.value && currentTab.value != 'Enrolled')) { + if (!user.data || (is_student.value && currentTab.value != 'enrolled')) { filters.value['start_date'] = ['>=', dayjs().format('YYYY-MM-DD')] filters.value['published'] = 1 } @@ -319,6 +319,7 @@ const batchTabs = computed(() => { let tabs = [ { label: __('All'), + value: 'all', }, ] @@ -327,11 +328,11 @@ const batchTabs = computed(() => { user.data?.is_instructor || user.data?.is_evaluator ) { - tabs.push({ label: __('Upcoming') }) - tabs.push({ label: __('Archived') }) - tabs.push({ label: __('Unpublished') }) + tabs.push({ label: __('Upcoming'), value: 'upcoming' }) + tabs.push({ label: __('Archived'), value: 'archived' }) + tabs.push({ label: __('Unpublished'), value: 'unpublished' }) } else if (user.data) { - tabs.push({ label: __('Enrolled') }) + tabs.push({ label: __('Enrolled'), value: 'enrolled' }) } return tabs })