File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -422,7 +422,7 @@ const main = function() {
422
422
startPlugin ( plugin )
423
423
plugin . onRuntimeReady ?. ( config , runtime ) ;
424
424
}
425
- const pyPluginRegistered = new CustomEvent ( "py-plugin-registered" , { detail : { config : config , plugin : plugin } ) ;
425
+ const pyPluginRegistered = new CustomEvent ( "py-plugin-registered" , { detail : { config : config , plugin : plugin } } ) ;
426
426
document . dispatchEvent ( pyPluginRegistered ) ;
427
427
}
428
428
@@ -441,7 +441,7 @@ const main = function() {
441
441
*/
442
442
logger ( `Starting plugin "${ plugin . name } " ⚡` ) ;
443
443
plugin . start ?. ( config ) ;
444
- const pyPluginStarted = new CustomEvent ( "py-plugin-started" , { detail : { config : config , plugin : plugin } ) ;
444
+ const pyPluginStarted = new CustomEvent ( "py-plugin-started" , { detail : { config : config , plugin : plugin } } ) ;
445
445
document . dispatchEvent ( pyPluginStarted ) ;
446
446
}
447
447
You can’t perform that action at this time.
0 commit comments