Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iadibar committed Feb 18, 2024
1 parent 8973bda commit fbdc891
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ export const Charts: React.FC<IExperimentData> = (props: IExperimentData) => {
{
yAxiosOptions?.map((item, index) => (
<div className={styles.chart}>
<DynamicChart chartData={props.data} xDefaultOption={xDefaultOption} yDefaultOption={item} chartDefaultType={getChartDefaultTypeByValue(item.value) as AttSelectOption} />

<DynamicChart chartData={props.data} xDefaultOption={xDefaultOption} yDefaultOption={item} chartDefaultType={getChartDefaultTypeByValue(item.value) as AttSelectOption} />
</div>
))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
.chart_filters {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.select_item {
Expand Down

0 comments on commit fbdc891

Please sign in to comment.