mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
This commit removes the background suggestion highlight in the search suggestion for text search suggestion.
13 lines
504 B
Handlebars
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>
|