aboutsummaryrefslogtreecommitdiff
path: root/src/other/PositionPage.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/other/PositionPage.jsx')
-rw-r--r--src/other/PositionPage.jsx4
1 files 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) => (
<TableRow key={property}>
<TableCell>{property}</TableCell>
- <TableCell><strong>{positionAttributes[property]?.name || property}</strong></TableCell>
+ <TableCell><strong>{positionAttributes[property]?.name}</strong></TableCell>
<TableCell><PositionValue position={item} property={property} /></TableCell>
</TableRow>
))}
{item && Object.getOwnPropertyNames(item.attributes).map((attribute) => (
<TableRow key={attribute}>
<TableCell>{attribute}</TableCell>
- <TableCell><strong>{positionAttributes[attribute]?.name || attribute}</strong></TableCell>
+ <TableCell><strong>{positionAttributes[attribute]?.name}</strong></TableCell>
<TableCell><PositionValue position={item} attribute={attribute} /></TableCell>
</TableRow>
))}