start separating the active from inactive plugins

pull/3094/head
Rob Stupay 6 years ago
parent cf112b46c6
commit 6d78543007
  1. 5
      src/app/components/plugin-manager-component.js

@ -41,8 +41,9 @@ class PluginManagerComponent {
<h2>Plugin Manager</h2>
</div>
`
var modules = this.store.getAll()
modules.forEach((mod) => {
var modulesActive = this.store.getActives()
modulesActive.forEach((mod) => {
this.views.root.appendChild(this.renderItem(mod.profile.name))
})
return this.views.root

Loading…
Cancel
Save