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

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.
This commit is contained in:
Ted Johansson
2024-08-14 15:25:59 +02:00
committed by GitHub
parent 059a8a0ff5
commit d15031a219

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>
}