summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHaishan <[email protected]>2019-12-22 19:32:20 +0800
committerHaishan <[email protected]>2019-12-22 19:32:20 +0800
commit17402f6eeaffe72e9845f4407ba6d78da9d45f14 (patch)
tree6c7d1f4d962dfac4617226db510896c30d450c07 /src
parentda26670147c5bb85b8b701aff23000e3a8e6ebd4 (diff)
fix: typo in connections table header
Diffstat (limited to 'src')
-rw-r--r--src/components/ConnectionTable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ConnectionTable.js b/src/components/ConnectionTable.js
index 8438b23..3fc0219 100644
--- a/src/components/ConnectionTable.js
+++ b/src/components/ConnectionTable.js
@@ -19,7 +19,7 @@ const columns = [
{ Header: 'Time', accessor: 'start' },
{ Header: 'Source IP', accessor: 'sourceIP' },
{ Header: 'Source Port', accessor: 'sourcePort' },
- { Header: 'Designation IP', accessor: 'destinationIP' }
+ { Header: 'Destination IP', accessor: 'destinationIP' }
];
function renderCell(cell, now) {