DEV: no need to iterate through each tag for rendering (#11508)

This commit allows discourse-assign plugin to show assigned user next to
tags.
This commit is contained in:
Arpit Jalan 2020-12-16 18:40:58 +05:30 committed by GitHub
parent dda98a1f7d
commit 1e7d6ebb0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 3 deletions

View File

@ -104,9 +104,9 @@
{{category-link result.topic.category.parentCategory}}
{{/if}}
{{category-link result.topic.category hideParent=true}}
{{#each result.topic.tags as |tag|}}
{{discourse-tag tag isPrivateMessage=isPrivateMessage}}
{{/each}}
{{#if result.topic.tags}}
{{discourse-tags result.topic}}
{{/if}}
{{plugin-outlet name="full-page-search-category" args=(hash result=result)}}
</div>
</div>

View File

@ -226,6 +226,17 @@
}
}
.discourse-tags {
flex-wrap: wrap;
display: inline-flex;
font-weight: normal;
.discourse-tag.simple {
font-size: $font-down-1;
margin-right: 0.25em;
}
}
input[type="checkbox"] {
margin-top: 0;
margin-left: 0;