DEV: Add plugin outlet for below wizard field (#28371) (#28384)

We changed the design of the member access wizard step to use toggle groups instead of switches. To support existing designs for notices, we need another plugin outlet.

Merged in main here. This is a backport to stable.
This commit is contained in:
Ted Johansson 2024-08-15 09:44:50 +02:00 committed by GitHub
parent b24917a815
commit 9cb28a232e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 0 deletions

View File

@ -90,6 +90,15 @@ export default class WizardFieldComponent extends Component {
}}
/>
{{/if}}
<PluginOutlet
@name="below-wizard-field"
@outletArgs={{hash
id=@field.id
disabled=@field.disabled
value=@field.value
}}
/>
</div>
</template>
}