{{#if (eq value (get item optionValuePath))}}
{{/if}}
{{#if showOptionIcon}}

{{/if}}
{{#if item.custom}}
{{get item optionLabelPath}}
{{else if localizedLabel}}
{{t (get item optionLabelPath)}}
{{else if localizedHtmlLabel}}
{{t (get item optionLabelPath) htmlSafe=true}}
{{else if customLabel}}
{{yield item}}
{{else}}
{{get item optionLabelPath}}
{{/if}}
{{/each}}
{{#each groupedContent as |group|}}
{{group.group}}
{{#each group.options as |item idx|}}
{{#if (eq value (get item optionValuePath))}}
{{/if}}
{{#if item.custom}}
{{get item optionLabelPath}}
{{else if customLabel}}
{{yield item}}
{{else if localizedLabel}}
{{t (get item optionLabelPath)}}
{{else if localizedHtmlLabel}}
{{t (get item optionLabelPath) htmlSafe=true}}
{{else}}
{{get item optionLabelPath}}
{{/if}}
{{/each}}
{{/each}}
{{/if}}
{{#if suffix}}
{{yield this "suffix"}}
{{/if}}