FIX: incorrect interpolation was limiting to 1 dispatch / component (#14470)
This commit is contained in:
parent
a1745e05ae
commit
fc432a9cab
|
@ -1461,7 +1461,8 @@ class PluginApi {
|
||||||
this.modifyClass(
|
this.modifyClass(
|
||||||
`component:${mountedComponent}`,
|
`component:${mountedComponent}`,
|
||||||
{
|
{
|
||||||
pluginId: `#{mountedComponent}/#{widgetKey}/#{appEvent}`,
|
pluginId: `${mountedComponent}/${widgetKey}/${appEvent}`,
|
||||||
|
|
||||||
didInsertElement() {
|
didInsertElement() {
|
||||||
this._super();
|
this._super();
|
||||||
this.dispatch(appEvent, widgetKey);
|
this.dispatch(appEvent, widgetKey);
|
||||||
|
|
Loading…
Reference in New Issue