Skip to content

Commit

Permalink
fix build issu
Browse files Browse the repository at this point in the history
  • Loading branch information
jbdesbas committed Apr 10, 2024
1 parent 441fad0 commit 320baa1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/chart_gauge_targets/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { GaugeSeriesOption } from 'echarts';
import ReactECharts, { EChartsOption } from 'echarts-for-react';
import { geekblue as palette , red, orange} from '@ant-design/colors';
import { geekblue as palette , orange} from '@ant-design/colors';

export interface IChartGaugeTargetProps {
value:number,
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/objectifs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const ObjectifsPage: React.FC<IResourceComponentsProps> = () => {
{current?.map((e:BaseRecord)=>
<Col span={8} key={e.id}>
<Card title={e.cible}>
<TargetCard data={cible_indicateur.filter((x) => x.id_cible == e.id_cible)} objectif_name={e.cible} value={e.value} date={e.date} due_date={e.due_date} ref_date={e.ref_date}
<TargetCard data={cible_indicateur.filter((x:BaseRecord) => x.id_cible == e.id_cible)} objectif_name={e.cible} value={e.value} date={e.date} due_date={e.due_date} ref_date={e.ref_date}
ref_value={e.ref_value} target_value={e.target} />
</Card>
</Col>
Expand Down

0 comments on commit 320baa1

Please sign in to comment.