DEV: Add plugin outlets for after category/tag inputs in composer (#23363)

This commit is contained in:
Keegan George 2023-08-31 19:08:48 -07:00 committed by GitHub
parent be32f580ad
commit d7d3bc758e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -180,6 +180,10 @@
prioritizedCategoryId=this.composer.prioritizedCategoryId
}}
/>
<PluginOutlet
@name="after-composer-category-input"
@outletArgs={{hash composer=this.composer.model}}
/>
<PopupInputTip
@validation={{this.composer.categoryValidation}}
/>
@ -196,6 +200,10 @@
minimum=this.composer.model.minimumRequiredTags
}}
/>
<PluginOutlet
@name="after-composer-tag-input"
@outletArgs={{hash composer=this.composer.model}}
/>
<PopupInputTip
@validation={{this.composer.tagValidation}}
/>