aboutsummaryrefslogtreecommitdiff
path: root/src/main/DeviceRow.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/DeviceRow.jsx')
-rw-r--r--src/main/DeviceRow.jsx15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/main/DeviceRow.jsx b/src/main/DeviceRow.jsx
index d9357c9d..b7c2646e 100644
--- a/src/main/DeviceRow.jsx
+++ b/src/main/DeviceRow.jsx
@@ -115,21 +115,6 @@ const DeviceRow = ({ data, index, style }) => {
return (
<>
{deviceSecondary && item[deviceSecondary] && item[deviceSecondary]}
- {/* RATIONALE: clients want more info in the list */}
- {position && positionItems.split(',').filter((key) => position.hasOwnProperty(key) || position.attributes.hasOwnProperty(key)).map((key) => (
- <AttrItem
- key={key}
- attr={key}
- name={positionAttributes[key]?.name || key}
- content={(
- <PositionValue
- position={position}
- property={position.hasOwnProperty(key) ? key : null}
- attribute={position.hasOwnProperty(key) ? null : key}
- />
- )}
- />
- ))}
</>
);
};