Skip to content

Commit 36bc39c

Browse files
committed
chore: fix type error
1 parent a2a702a commit 36bc39c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1476,7 +1476,7 @@ const RundownViewContent = translateWithTracker<IPropsWithReady, IState, ITracke
14761476
miniShelfLayoutId: protectString((params['miniShelfLayout'] as string) || ''),
14771477
shelfDisplayOptions: {
14781478
// If buckets are enabled in Studiosettings, it can also be filtered in the URLs display options.
1479-
enableBuckets: studio?.settings.enableBuckets && displayOptions.includes('buckets'),
1479+
enableBuckets: !!studio?.settings.enableBuckets && displayOptions.includes('buckets'),
14801480
enableLayout: displayOptions.includes('layout') || displayOptions.includes('shelfLayout'),
14811481
enableInspector: displayOptions.includes('inspector'),
14821482
},

0 commit comments

Comments
 (0)