Skip to content

Commit 6da6c89

Browse files
authored
Merge pull request #43 from IliasDeros/master
Fix default `inline` parameter value
2 parents 20e8af2 + f329cd9 commit 6da6c89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addon/components/bs-datetimepicker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export default Component.extend({
5454
format: this.getWithDefault('format', defaults.format),
5555
icons,
5656
ignoreReadonly: this.isMobile || defaults.ignoreReadonly,
57-
inline: this.getWithDefault('inline', defaults.locale),
57+
inline: this.getWithDefault('inline', defaults.inline),
5858
locale: this.getWithDefault('locale', defaults.locale),
5959
maxDate: this.getWithDefault('maxDate', defaults.maxDate),
6060
minDate: this.getWithDefault('minDate', defaults.minDate),

0 commit comments

Comments
 (0)