diff --git a/src/app/components/plugin-manager-component.js b/src/app/components/plugin-manager-component.js index e0bb2f3f8c..b904aa1b2e 100644 --- a/src/app/components/plugin-manager-component.js +++ b/src/app/components/plugin-manager-component.js @@ -3,6 +3,7 @@ const csjs = require('csjs-inject') const EventEmitter = require('events') const LocalPlugin = require('./local-plugin') import { Plugin, BaseApi } from 'remix-plugin' +import { PluginManagerSettings } from './plugin-manager-settings' const css = csjs` .pluginSearch { @@ -152,14 +153,16 @@ class PluginManagerComponent extends BaseApi { ` : '' + const settings = new PluginManagerSettings().render() + const rootView = yo`
-
+
-
+
${activeTile}
@@ -170,6 +173,7 @@ class PluginManagerComponent extends BaseApi { ${inactives.map(name => this.renderItem(name))}
+ ${settings}
` if (!this.views.root) this.views.root = rootView