Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
villebro committed Mar 22, 2022
1 parent 42e923d commit a1ff50b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ const DashboardBuilder: FC<DashboardBuilderProps> = () => {
<StickyPanel ref={containerRef} width={filterBarWidth}>
<ErrorBoundary>
<FilterBar
filtersOpen={dashboardFiltersOpen}
filtersOpen={!!dashboardFiltersOpen}
toggleFiltersBar={toggleDashboardFiltersOpen}
directPathToChild={directPathToChild}
width={filterBarWidth}
Expand Down Expand Up @@ -407,7 +407,7 @@ const DashboardBuilder: FC<DashboardBuilderProps> = () => {
>
<StyledDashboardContent
className="dashboard-content"
dashboardFiltersOpen={dashboardFiltersOpen}
dashboardFiltersOpen={!!dashboardFiltersOpen}
editMode={editMode}
nativeFiltersEnabled={nativeFiltersEnabled}
>
Expand Down

0 comments on commit a1ff50b

Please sign in to comment.