I am generating ember-power-select box using {{#each}} block in hbs template as shown in the code below.
{{#each hps as |hp|}}
{{#power-select
search=(action "searchRepo")
selected=selected
onchange=(action (mut selected))
as |repo|
}}
{{repo.name}}
{{/power-select}}
{{/each}}
The above code generates two select boxes. But when I select a value in the first box,the same value gets replicated in the second box too.
What is the way to differentiate the two select boxes?