pull/3094/head
yann300 6 years ago
parent cf08df59f6
commit a728cfcd0c
  1. 6
      src/app/components/plugin-manager-component.js

@ -60,9 +60,9 @@ class PluginManagerComponent {
var modulesActive = this.store.getActives() var modulesActive = this.store.getActives()
modulesActive.sort(function (a, b) { modulesActive.sort(function (a, b) {
var textA = a.profile.name.toUpperCase(); var textA = a.profile.name.toUpperCase()
var textB = b.profile.name.toUpperCase(); var textB = b.profile.name.toUpperCase()
return (textA < textB) ? -1 : (textA > textB) ? 1 : 0; return (textA < textB) ? -1 : (textA > textB) ? 1 : 0
}) })
modulesActive.forEach((mod) => { modulesActive.forEach((mod) => {

Loading…
Cancel
Save