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,
},
},
states: {
active: {
filter: {
type: "none",
},
},
},
tooltip: {
theme: systemTheme || theme,
y: {
@ -192,6 +199,18 @@ export function StorageGraph({ graphId, used, total }: StorageGraphProps) {
horizontal: true,
},
},
states: {
active: {
filter: {
type: "none",
},
},
hover: {
filter: {
type: "none",
},
},
},
tooltip: {
enabled: false,
},