From 3eb40e652f8720124a4754762e946d401faac042 Mon Sep 17 00:00:00 2001 From: Christopher Di Carlo Date: Thu, 31 May 2018 19:33:04 -0400 Subject: [PATCH] Fix #2132 (#2133) --- resources/views/header.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/header.blade.php b/resources/views/header.blade.php index b0c85f8b2ca9..992838072af2 100644 --- a/resources/views/header.blade.php +++ b/resources/views/header.blade.php @@ -405,7 +405,7 @@ @endforeach @if ( ! Utils::isNinjaProd()) @foreach (Module::collections() as $module) - @includeWhen(empty($module->get('no-sidebar')) || $module->get('no-sidebar') != '1', [ + @includeWhen(empty($module->get('no-sidebar')) || $module->get('no-sidebar') != '1', 'partials.navigation_option', [ 'option' => $module->getAlias(), 'icon' => $module->get('icon', 'th-large'), ])