FIX: Nest combobox within LI element (#280)

This commit is contained in:
Jordan Vidrine 2024-02-08 15:50:26 -06:00 committed by GitHub
parent 3a6d2e46a1
commit 526a44644a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 8 deletions

View File

@ -1,10 +1,12 @@
{{#if this.siteSettings.solved_enabled}} {{#if this.siteSettings.solved_enabled}}
<ComboBox <li>
@content={{this.statuses}} <ComboBox
@value={{this.status}} @content={{this.statuses}}
@valueProperty="value" @value={{this.status}}
@options={{hash caretDownIcon="caret-right" caretUpIcon="caret-down"}} @valueProperty="value"
@onChange={{this.changeStatus}} @options={{hash caretDownIcon="caret-right" caretUpIcon="caret-down"}}
class="solved-status-filter" @onChange={{this.changeStatus}}
/> class="solved-status-filter"
/>
</li>
{{/if}} {{/if}}