Skip to content

Commit

Permalink
fix: general fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanoshadjipetrou committed Jul 15, 2024
1 parent 9c7c004 commit 14a8a39
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/charts/bar-series/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ export const BarSeriesChart: React.FC<BarSeriesChartProps> = (
},
dataZoom: [
{
start: 90,
show: mobile,
type: "slider",
start: mobile ? 90 : 0,
},
],
series: props.data.map((serie) => ({
Expand Down
2 changes: 2 additions & 0 deletions src/app/pages/datasets/common/chart-block/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,15 @@ export const DatasetChartBlock: React.FC<DatasetChartBlockProps> = (
/>
<Box
display="flex"
marginBottom="40px"
flexDirection="row"
justifyContent="space-between"
sx={{
"@media (max-width: 767px)":
props.extraDropdown && props.dropdownItems.length > 0
? {
gap: "16px",
marginBottom: 0,
flexDirection: "column",
}
: {},
Expand Down

0 comments on commit 14a8a39

Please sign in to comment.