Skip to content

Commit

Permalink
Fix logic for breadcrumb visibility (CO-2141)
Browse files Browse the repository at this point in the history
  • Loading branch information
arlen committed Sep 17, 2021
1 parent ac6ca52 commit 0b6cd7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/Template/Layout/default.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ if(isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'M
<main id="main">
<div id="content">
<div id="content-inner">
<?php if($controller_stripped != 'matchgrids' && $action_stripped != 'select'): ?>
<?php if(!($controller_stripped == 'matchgrids' && $action_stripped == 'select')): ?>
<!-- insert breadcrumbs on all but the front (select matchgrid) page -->
<div id="breadcrumbs">
<?= $this->element('breadcrumbs'); ?>
Expand Down

0 comments on commit 0b6cd7b

Please sign in to comment.