I’m not sure if I’m missing something because in my earlier versions of this project (first with ember) this worked.
I need to set the CSS class of my ember-power-select addon
The “class” values seem to get ignored in this example
{{#power-select
class="form-control select2"
selected=model.currency
options=currencies
onchange=(action (mut model.currency)) as |currency|}}
{{currency.name}}
{{/power-select}}