We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83da657 commit 4d47a11Copy full SHA for 4d47a11
1 file changed
packages/app/src/components/inference/ui/ChartDisplay.tsx
@@ -265,8 +265,10 @@ export default function ChartDisplay() {
265
}
266
setIsLegendExpanded={setIsLegendExpanded}
267
onExportCsv={() => {
268
- const visibleData = graph.data.filter((d) =>
269
- activeHwTypes.has(d.hwKey as string),
+ const visibleData = graph.data.filter(
+ (d) =>
270
+ activeHwTypes.has(d.hwKey as string) &&
271
+ selectedPrecisions.includes(d.precision),
272
);
273
const { headers, rows } = inferenceChartToCsv(
274
visibleData,
0 commit comments