mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-22 15:39:11 +00:00
fix: missing backstage prop
This commit is contained in:
committed by
Carlos Valente
parent
570ff59cfc
commit
b3a099255f
@@ -14,7 +14,7 @@ export default memo(ScheduleExport);
|
|||||||
function ScheduleExport(props: ScheduleExportProps) {
|
function ScheduleExport(props: ScheduleExportProps) {
|
||||||
const { selectedId, isBackstage } = props;
|
const { selectedId, isBackstage } = props;
|
||||||
return (
|
return (
|
||||||
<ScheduleProvider selectedEventId={selectedId} isBackstage>
|
<ScheduleProvider selectedEventId={selectedId} isBackstage={isBackstage}>
|
||||||
<ScheduleNav className='schedule-nav-container' />
|
<ScheduleNav className='schedule-nav-container' />
|
||||||
<Schedule isProduction={isBackstage} className='schedule-container' />
|
<Schedule isProduction={isBackstage} className='schedule-container' />
|
||||||
</ScheduleProvider>
|
</ScheduleProvider>
|
||||||
|
|||||||
Reference in New Issue
Block a user