Skip to content

Commit

Permalink
Allow routes to be toggled even if the node is offline
Browse files Browse the repository at this point in the history
  • Loading branch information
GoodiesHQ committed May 29, 2024
1 parent f1c2a2d commit f7213ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/cards/node/NodeRoute.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
$: disabled =
loading || // route status is actively being changed
!route.advertised || // route is not advertised
isExpired(node.expiry || '') || // node is expired
!node.online; // node is not online
isExpired(node.expiry || '') /* || // node is expired
!node.online; // node is not online */
</script>

<div class="col-span-6 text-start items-center">
Expand Down

0 comments on commit f7213ff

Please sign in to comment.