Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaAmega committed Dec 6, 2024
1 parent 5953778 commit dc4bedf
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion ui/service/src/routes/src/dashboard/dashboard-main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import {
getProjectDashboard
} from 'evidently-ui-lib/routes-components/dashboard/data'

import { GoToSnapshotByPoint, HintOnHoverToPlot } from 'evidently-ui-lib/components/OnClickedPoint'
import { clientAPI } from '~/api'

///////////////////
Expand Down Expand Up @@ -64,5 +65,12 @@ export const Component = () => {
}
})

return <ProjectDashboard data={data} dateFilterProps={{ dates, setDates, dateRange }} />
return (
<ProjectDashboard
data={data}
dateFilterProps={{ dates, setDates, dateRange }}
OnClickedPointComponent={GoToSnapshotByPoint}
OnHoveredPlotComponent={HintOnHoverToPlot}
/>
)
}

0 comments on commit dc4bedf

Please sign in to comment.