Skip to content

Commit

Permalink
Fix missing filterbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac Connor committed Aug 14, 2024
1 parent 251f66c commit 70fe9e1
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions web/skins/classic/views/montagereview.php
Original file line number Diff line number Diff line change
Expand Up @@ -274,17 +274,15 @@
<input type="hidden" name="view" value="montagereview"/>
<div id="header">
<?php
$html = '<a class="flip" href="#"
data-flip-сontrol-object="#mfbpanel"
data-flip-сontrol-run-after-func="applyChosen drawGraph"
data-flip-сontrol-run-after-complet-func="changeScale">
<i id="mfbflip" class="material-icons md-18" data-icon-visible="filter_alt_off" data-icon-hidden="filter_alt"></i>
</a>'.PHP_EOL;
$html .= '<div id="mfbpanel" class="hidden-shift container-fluid">'.PHP_EOL;
echo $html;
?>
<?php echo $filter_bar ?>
<?php
$html = '<a class="flip" href="#"
data-flip-сontrol-object="#mfbpanel"
data-flip-сontrol-run-after-func="applyChosen drawGraph"
data-flip-сontrol-run-after-complet-func="changeScale">
<i id="mfbflip" class="material-icons md-18" data-icon-visible="filter_alt_off" data-icon-hidden="filter_alt"></i>
</a>'.PHP_EOL;
$html .= '<div id="mfbpanel" class="hidden-shift container-fluid">'.PHP_EOL;
echo $html;
echo $filterbar;
if (count($filter->terms())) {
echo $filter->simple_widget();
}
Expand Down

0 comments on commit 70fe9e1

Please sign in to comment.