Skip to content

Commit

Permalink
fix(docker): env var
Browse files Browse the repository at this point in the history
  • Loading branch information
polonel committed Mar 6, 2019
1 parent ebe6504 commit ffe26b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/hbs/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ var helpers = {
},

isNotTrue: function (obj, options) {
if (!(_.isUndefined(obj) || _.isNull(obj) || obj === true || obj === 'true')) return options.fn(this)
if (obj === true || obj.toLowerCase() === 'true') return options.fn(this)

return options.inverse(this)
},
Expand Down

0 comments on commit ffe26b4

Please sign in to comment.