From 9325c3938b428108bb517930b6505d93505b1ec3 Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Fri, 10 Jul 2020 23:52:25 -0700 Subject: [PATCH] All events first on the schedule page --- app/views/schedules/_schedule_tabs.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/schedules/_schedule_tabs.html.haml b/app/views/schedules/_schedule_tabs.html.haml index 0317f8bc..f3d83b34 100644 --- a/app/views/schedules/_schedule_tabs.html.haml +++ b/app/views/schedules/_schedule_tabs.html.haml @@ -1,7 +1,7 @@ %div{ role: "tabpanel" } / Nav tabs %ul.nav.nav-tabs{ role: "tablist" } - %li{ class: "schedule #{ 'active' if active == 'schedule' }", role: "presentation" } - = link_to('Schedule', conference_schedule_path(@conference.short_title)) %li{ class: "program #{ 'active' if active == 'program' }", role: "presentation" } = link_to('All events', events_conference_schedule_path(@conference.short_title)) + %li{ class: "schedule #{ 'active' if active == 'schedule' }", role: "presentation" } + = link_to('Schedule', conference_schedule_path(@conference.short_title))