We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb0388f commit 5b817c2Copy full SHA for 5b817c2
CHANGELOG.md
@@ -2,6 +2,10 @@
2
All notable changes to this project will be documented in this file.
3
This project adheres to [Semantic Versioning](http://semver.org/).
4
5
+## [Unreleased]
6
+### Fixed
7
+ - Fix conditional check for framework if framework is ''
8
+
9
## [1.1.1] - 2017-02-02
10
### Fixed
11
- Fix user helper reference to app namespace detector trait.
resources/views/layouts/master.blade.php
@@ -1,5 +1,5 @@
1
<?php
-if (!isset($framework)) {
+if (!isset($framework) || $framework == '') {
$framework = 'bs4';
}
$partial = 'taskforce-support::partials.' . $framework;
0 commit comments