fix: read/write labels swapped for extra disk charts (#254)

This commit is contained in:
Henry Dollman
2024-11-04 14:29:10 -05:00
parent 7ca960b521
commit aa15876aa2

View File

@@ -62,8 +62,8 @@ export default memo(function AreaChartDefault({
] ]
} else if (chartName.startsWith("efs")) { } else if (chartName.startsWith("efs")) {
return [ return [
[t`Read`, `${chartName}.w`, 3, 0.3], [t`Write`, `${chartName}.w`, 3, 0.3],
[t`Write`, `${chartName}.r`, 1, 0.3], [t`Read`, `${chartName}.r`, 1, 0.3],
] ]
} }
return [] return []