This commit is contained in:
Douglas Barone 2023-11-29 08:32:01 -04:00
parent c2b4b499e7
commit 37d1859e0f

View File

@ -99,15 +99,15 @@ if (props.status[0].tonerBlackLevel !== null) {
series.push(tonerBlackLevelSeries)
}
if (props.status[0].tonerCyanLevel) {
if (props.status[0].tonerCyanLevel !== null) {
series.push(tonerCyanLevelSeries)
}
if (props.status[0].tonerMagentaLevel) {
if (props.status[0].tonerMagentaLevel !== null) {
series.push(tonerMagentaLevelSeries)
}
if (props.status[0].tonerYellowLevel) {
if (props.status[0].tonerYellowLevel !== null) {
series.push(tonerYellowLevelSeries)
}