Skip to content

Commit

Permalink
Pre-release fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
barryo committed May 24, 2024
1 parent 9e0dc29 commit 1b228a2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ IXP_FE_FRONTEND_DISABLED_LOGO=false
# Disable links to the peering matrix if you have not set it up (with sflow):
# IXP_FE_FRONTEND_DISABLED_PEERING_MATRIX=true

# Enable route server filtering by uncommenting this line:
IXP_FE_FRONTEND_DISABLED_RS_FILTERS=false
# Enable the UI for route server community-based filtering by uncommenting this line:
# IXP_FE_FRONTEND_DISABLED_RS_FILTERS=false

#######################################################################################
### Graphing - see https://docs.ixpmanager.org/grapher/introduction
Expand Down
12 changes: 7 additions & 5 deletions resources/views/layouts/menu.foil.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,11 +291,13 @@
</a>
</li>

<li class="nav-sub-menu-item <?= request()->is( 'rs-filters/list-customers' ) ? 'active' : '' ?>" >
<a href="<?= route('rs-filters@list-customers' ) ?>" class="nav-link" >
Customers with Filters
</a>
</li>
<?php if( !config( 'ixp_fe.frontend.disabled.rs-filters') ): ?>
<li class="nav-sub-menu-item <?= request()->is( 'rs-filters/list-customers' ) ? 'active' : '' ?>" >
<a href="<?= route('rs-filters@list-customers' ) ?>" class="nav-link" >
Customers with Filters
</a>
</li>
<?php endif; ?>
</ul>
<?php endif;?>

Expand Down

0 comments on commit 1b228a2

Please sign in to comment.