From b096e22dc6f4a39ca5b1cc9daff5eabe9b5c8ff9 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 7 Apr 2024 14:59:17 -0700 Subject: Only show name --- src/other/PositionPage.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/other/PositionPage.jsx b/src/other/PositionPage.jsx index f253cd2c..e64ee491 100644 --- a/src/other/PositionPage.jsx +++ b/src/other/PositionPage.jsx @@ -87,14 +87,14 @@ const PositionPage = () => { {item && Object.getOwnPropertyNames(item).filter((it) => it !== 'attributes').map((property) => ( {property} - {positionAttributes[property]?.name || property} + {positionAttributes[property]?.name} ))} {item && Object.getOwnPropertyNames(item.attributes).map((attribute) => ( {attribute} - {positionAttributes[attribute]?.name || attribute} + {positionAttributes[attribute]?.name} ))} -- cgit v1.2.3