Skip to content

Commit

Permalink
Merge pull request #43 from IliasDeros/master
Browse files Browse the repository at this point in the history
Fix default `inline` parameter value
  • Loading branch information
btecu authored Aug 15, 2017
2 parents 20e8af2 + f329cd9 commit 6da6c89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/components/bs-datetimepicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default Component.extend({
format: this.getWithDefault('format', defaults.format),
icons,
ignoreReadonly: this.isMobile || defaults.ignoreReadonly,
inline: this.getWithDefault('inline', defaults.locale),
inline: this.getWithDefault('inline', defaults.inline),
locale: this.getWithDefault('locale', defaults.locale),
maxDate: this.getWithDefault('maxDate', defaults.maxDate),
minDate: this.getWithDefault('minDate', defaults.minDate),
Expand Down

0 comments on commit 6da6c89

Please sign in to comment.