diff options
Diffstat (limited to 'modern/src')
-rw-r--r-- | modern/src/reports/RouteReportPage.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modern/src/reports/RouteReportPage.js b/modern/src/reports/RouteReportPage.js index 011216fd..64bf0a59 100644 --- a/modern/src/reports/RouteReportPage.js +++ b/modern/src/reports/RouteReportPage.js @@ -103,7 +103,7 @@ const RouteReportPage = () => { <TableRow> <TableCell className={classes.columnAction} /> <TableCell>{t('sharedDevice')}</TableCell> - {columns.map((key) => (<TableCell key={key}>{positionAttributes[key].name}</TableCell>))} + {columns.map((key) => (<TableCell key={key}>{positionAttributes[key]?.name || key}</TableCell>))} </TableRow> </TableHead> <TableBody> |