Skip to content

Commit

Permalink
filter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Hall authored and Brian Hall committed Jan 2, 2025
1 parent 35d6a86 commit f3bc5d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/MapView/LinkLine.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default class LinkLine extends PureComponent {

if (status === "vpn" && !filters.VPN) return null;
if (status === "fiber" && !filters.fiber) return null;
if (status === "active" && !filters.wireless) return null;

if (!fromNode || !toNode) {
return null;
Expand Down
1 change: 1 addition & 0 deletions src/reducers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const initialFilters = {
"potential-hub": true,
"potential-supernode": true,
sector: true,
fiber: true,
VPN: false,
wireless: true,
backbone: false,
Expand Down

0 comments on commit f3bc5d6

Please sign in to comment.