Skip to content

Commit 5b817c2

Browse files
committed
Fix framework empty bug
1 parent bb0388f commit 5b817c2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [Unreleased]
6+
### Fixed
7+
- Fix conditional check for framework if framework is ''
8+
59
## [1.1.1] - 2017-02-02
610
### Fixed
711
- Fix user helper reference to app namespace detector trait.

resources/views/layouts/master.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
if (!isset($framework)) {
2+
if (!isset($framework) || $framework == '') {
33
$framework = 'bs4';
44
}
55
$partial = 'taskforce-support::partials.' . $framework;

0 commit comments

Comments
 (0)