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:
parent
9ce58c7e36
commit
258471e7f2
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in New Issue