DEV: Move `editor-preview` wrapper outside PluginOutlet

This outlet is the only one to pass an `@classNames` argument, which is no longer supported in the glimmer version of PluginOutlet. This commit moves the wrapper outside, thereby maintaining the old HTML structure.
This commit is contained in:
David Taylor 2023-01-31 10:57:34 +00:00
parent 9ce58c7e36
commit 258471e7f2
1 changed files with 7 additions and 7 deletions

View File

@ -68,13 +68,13 @@
{{html-safe this.preview}}
{{/unless}}
</div>
<PluginOutlet
@name="editor-preview"
@tagName="span"
@connectorTagName="div"
@classNames="d-editor-plugin"
@args={{this.outletArgs}}
/>
<span class="d-editor-plugin">
<PluginOutlet
@name="editor-preview"
@connectorTagName="div"
@args={{this.outletArgs}}
/>
</span>
</div>
</div>