Open jaurand opened 4 years ago
Noticed the same problem. I removed the showicon=false and hide it in scss with input-group-addon display: none
.date {
.input-group-addon {
display: none;
}
}
Can you create a reproduction in an ember-twiddle
or something?
Sorry, I am a little busy just now, maybe later I have time to try to reproduce.
This is how the component is called when the problem occur:
{{bs-datetimepicker date=model.startAt allowInputToggle=true showIcon=false}}
"ember-cli-bootstrap-datetimepicker": "^0.9.3",
If you set showIcon to false then you get the following exception when opening the picker:
I think this is because the
input-group
class is always added, but it's only needed if the icon is rendered.