Added name for dock icons in the footer to easily identify which is which

This commit is contained in:
Bryan Chauvin
2019-09-12 10:49:40 -05:00
parent 22b241055b
commit 332e588081
2 changed files with 4 additions and 2 deletions

View File

@@ -213,11 +213,13 @@ angular.module('app')
this.reloadDockShortcuts = function() {
let shortcuts = [];
for(var theme of this.themesWithIcons) {
var name = theme.content.package_info.name;
var icon = theme.content.package_info.dock_icon;
if(!icon) {
continue;
}
shortcuts.push({
name: name,
component: theme,
icon: icon
})