DEV: Wrap user summary category rows in plugin outlet (#25466)

This commit is contained in:
Mark VanLandingham 2024-01-29 15:48:36 -06:00 committed by GitHub
parent 2558543794
commit f6becaa0b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -239,6 +239,10 @@
<tbody>
{{#each this.model.top_categories as |category|}}
<tr>
<PluginOutlet
@name="user-summary-top-category-row"
@outletArgs={{hash category=category user=this.user}}
>
<td class="category-link">
{{category-link
category
@ -260,6 +264,7 @@
@count={{category.post_count}}
/>
</td>
</PluginOutlet>
</tr>
{{/each}}
</tbody>