Fix system graphs click and hover states

This commit is contained in:
Nicolas Mowen 2024-04-17 15:27:02 -06:00
parent 087afd96fe
commit 433291c4cd

View File

@ -90,6 +90,13 @@ export function ThresholdBarGraph({
distributed: true, distributed: true,
}, },
}, },
states: {
active: {
filter: {
type: "none",
},
},
},
tooltip: { tooltip: {
theme: systemTheme || theme, theme: systemTheme || theme,
y: { y: {
@ -192,6 +199,18 @@ export function StorageGraph({ graphId, used, total }: StorageGraphProps) {
horizontal: true, horizontal: true,
}, },
}, },
states: {
active: {
filter: {
type: "none",
},
},
hover: {
filter: {
type: "none",
},
},
},
tooltip: { tooltip: {
enabled: false, enabled: false,
}, },