Skip to content

Commit

Permalink
Merge pull request #1381 from tien-han/development
Browse files Browse the repository at this point in the history
Bugfix for loss of map graph display when in mobile
  • Loading branch information
huss authored Nov 7, 2024
2 parents 360854a + b1a3631 commit be1abbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/app/components/DashboardComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function DashboardComponent() {
<UIOptionsComponent />
</div>
<div className={`${optionsVisibility ? 'col-12 col-lg-10' : 'col-12'} align-self-auto text-center`} style={{ height: '100%' }}>
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'center', height: '100%' }}>
<div style={{ display: 'flex', flexDirection: 'column', height: '100%' }}>
<PlotNavComponent />
{chartToRender === ChartTypes.line && <LineChartComponent />}
{chartToRender === ChartTypes.bar && <BarChartComponent />}
Expand Down

0 comments on commit be1abbf

Please sign in to comment.