Skip to content

Commit

Permalink
FIX: Nest combobox within LI element (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanvidrine committed Feb 8, 2024
1 parent 3a6d2e4 commit 526a446
Showing 1 changed file with 10 additions and 8 deletions.
@@ -1,10 +1,12 @@
{{#if this.siteSettings.solved_enabled}}
<ComboBox
@content={{this.statuses}}
@value={{this.status}}
@valueProperty="value"
@options={{hash caretDownIcon="caret-right" caretUpIcon="caret-down"}}
@onChange={{this.changeStatus}}
class="solved-status-filter"
/>
<li>
<ComboBox
@content={{this.statuses}}
@value={{this.status}}
@valueProperty="value"
@options={{hash caretDownIcon="caret-right" caretUpIcon="caret-down"}}
@onChange={{this.changeStatus}}
class="solved-status-filter"
/>
</li>
{{/if}}

0 comments on commit 526a446

Please sign in to comment.