aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2023-12-28 08:44:32 -0800
committerAnton Tananaev <anton@traccar.org>2023-12-28 08:44:32 -0800
commit0d7af5faf9d3cfd02dc9f03dd16e7824a451022f (patch)
tree872aba12cf608b36d2b89575ebc59dcea8d4f0d1
parent0591f6a62eb9b50704038de87b24cf806f417d4b (diff)
downloadtrackermap-web-0d7af5faf9d3cfd02dc9f03dd16e7824a451022f.tar.gz
trackermap-web-0d7af5faf9d3cfd02dc9f03dd16e7824a451022f.tar.bz2
trackermap-web-0d7af5faf9d3cfd02dc9f03dd16e7824a451022f.zip
Show protocol instead of port
-rw-r--r--modern/src/reports/LogsPage.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/modern/src/reports/LogsPage.jsx b/modern/src/reports/LogsPage.jsx
index 3a72f81b..9bc04201 100644
--- a/modern/src/reports/LogsPage.jsx
+++ b/modern/src/reports/LogsPage.jsx
@@ -33,7 +33,7 @@ const LogsPage = () => {
{items.map((item, index) => (
<TableRow key={index}>
<TableCell>{item.uniqueId}</TableCell>
- <TableCell>{item.port}</TableCell>
+ <TableCell>{item.protocol}</TableCell>
<TableCell>{item.data}</TableCell>
</TableRow>
))}