Skip to content

Commit e69f9b5

Browse files
committed
Don't skip header for list of countdowns
Only for the various countdown pages themselves
1 parent 1e3b300 commit e69f9b5

File tree

1 file changed

+2
-1
lines changed
  • packages/webui/src/client/ui

1 file changed

+2
-1
lines changed

packages/webui/src/client/ui/App.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,8 @@ export const App: React.FC = function App() {
159159
<ErrorBoundary>
160160
<Switch>
161161
<Route path="/rundown/:playlistId" component={NullComponent} />
162-
<Route path="/countdowns/:studioId" component={NullComponent} />
162+
{/* The ClockView index should show heders. Any pages inside should not */}
163+
<Route path="/countdowns/:studioId/:page" component={NullComponent} />
163164
<Route path="/activeRundown" component={NullComponent} />
164165
<Route path="/prompter/:studioId" component={NullComponent} />
165166
<Route

0 commit comments

Comments
 (0)