Riku
2025-06-04 d0f07e25103d7c7845c3b9534e8c66b5905447c0
src/components/monitor/FactorLegend.vue
@@ -128,11 +128,12 @@
          ', ' +
          color[3] +
          ')';
        const { scale = 1, unit = '' } = factorUnit[name];
        legendList.push({
          color: bgColor,
          min: r[0],
          max: nextR ? nextR[0] : undefined,
          unit: factorUnit[name] ? factorUnit[name].unit : ''
          min: r[0] * scale,
          max: nextR ? nextR[0] * scale : undefined,
          unit: unit
        });
      }