fix getIds from appManager

pull/3094/head
yann300 5 years ago committed by GitHub
parent 95d8b1f4b2
commit d54cb92e03
  1. 2
      src/remixAppManager.js

@ -28,7 +28,7 @@ export class RemixAppManager extends PluginEngine {
}
getIds () {
return this.registered.map(el => el.name)
return Object.keys(this.registered)
}
onDeactivation (plugin) {

Loading…
Cancel
Save