ui - show exceptions

This commit is contained in:
Ishaan Jaff 2024-06-15 15:40:49 -07:00
parent 2f9aa308f1
commit 5e8b65f1f1

View file

@ -2080,6 +2080,24 @@ const ModelDashboard: React.FC<ModelDashboardProps> = ({
</Card>
</Col>
</Grid>
<Grid numItems={1} className="gap-2 w-full mt-2">
<Card>
<Title>All Exceptions for {selectedModelGroup}</Title>
<BarChart
className="h-60"
data={modelExceptions}
index="model"
categories={allExceptions}
stack={true}
yAxisWidth={30}
/>
</Card>
</Grid>
<Grid numItems={1} className="gap-2 w-full mt-2">
<Card>
@ -2098,15 +2116,7 @@ const ModelDashboard: React.FC<ModelDashboardProps> = ({
</Col>
<Col>
{/* <BarChart
className="h-40"
data={modelExceptions}
index="model"
categories={allExceptions}
stack={true}
yAxisWidth={30}
/> */}
</Col>