Skip to content

Commit

Permalink
v1.0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
david.craig10 committed Mar 20, 2017
1 parent fda8bc8 commit 3c092c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [1.0.18] - 2017-03-20
### Fixed
- Fix conditional check for framework if framework is ''

## [1.0.17] - 2017-01-20
### Fixed
- Fix issue with layouts namespace.
Expand Down
2 changes: 1 addition & 1 deletion resources/views/layouts/master.blade.php
@@ -1,5 +1,5 @@
<?php
if (!isset($framework)) {
if (!isset($framework) || $framework == '') {
$framework = 'bs4';
}
$partial = 'taskforce-support::partials.' . $framework;
Expand Down

0 comments on commit 3c092c6

Please sign in to comment.