Render circuit protection values
This commit is contained in:
@@ -146,6 +146,13 @@ function makeVisibleGridRow(
|
||||
value = getDeviceValue(device, column.key);
|
||||
} else if (kind === "circuitField" && circuit) {
|
||||
value = getCircuitValue(circuit, column.key);
|
||||
} else if (
|
||||
kind === "computed" &&
|
||||
rowType !== "deviceRow" &&
|
||||
circuit &&
|
||||
circuitOnlyColumns.has(column.key)
|
||||
) {
|
||||
value = getCircuitValue(circuit, column.key);
|
||||
} else if (column.key === "rowTotalPower" && device) {
|
||||
value = device.rowTotalPower;
|
||||
} else if (column.key === "rowTotalPower" && circuit) {
|
||||
|
||||
Reference in New Issue
Block a user