Files
zulip/web/templates/search_list_item.hbs
Pratik Chanda e04e281413 search: Remove background suggestion highlight for text search.
This commit removes the background suggestion highlight in the
search suggestion for text search suggestion.
2025-07-17 15:57:53 -07:00

13 lines
504 B
Handlebars

<div class="search_list_item">
{{#each pills}}
{{#if (eq this.operator "search")}}
<div class="description">{{{this.description_html}}}</div>
{{else if (eq this.type "search_user")}}
<span class="pill-container">{{> search_user_pill this}}</span>
{{else}}
<span class="pill-container">{{> input_pill this}}</span>
{{/if}}
{{/each}}
{{#if description_html}}<div class="description">{{{description_html}}}</div>{{/if}}
</div>