|
|
@ -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) => { |
|
|
|