Skip to content

Commit

Permalink
Deploy latest build
Browse files Browse the repository at this point in the history
  • Loading branch information
egon-development committed Jun 21, 2024
1 parent 6eadaac commit 8ea0ee9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
17 changes: 11 additions & 6 deletions app-latest-build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4052,10 +4052,18 @@ function fromConfigurationFromFile(configFromFile) {
const actorsDict = new _dictionary_dictionary__WEBPACK_IMPORTED_MODULE_3__.Dictionary();
const workObjectsDict = new _dictionary_dictionary__WEBPACK_IMPORTED_MODULE_3__.Dictionary();
Object.keys(configFromFile.actors).forEach(key => {
actorsDict.add(configFromFile.actors[key], key);
let icon = configFromFile.actors[key];
if (icon) {
// make sure the actor has an icon
actorsDict.add(icon, key);
}
});
Object.keys(configFromFile.workObjects).forEach(key => {
workObjectsDict.add(configFromFile.workObjects[key], key);
let icon = configFromFile.workObjects[key];
if (icon) {
// make sure the work object has an icon
workObjectsDict.add(icon, key);
}
});
return {
name: configFromFile.name,
Expand Down Expand Up @@ -8413,10 +8421,7 @@ class IconDictionaryService {
addNewIconsToDictionary(customIcons) {
customIcons.keysArray().forEach(key => {
const custom = customIcons.get(key);
if (custom != null) {
// ignore broken custom icons
this.addIMGToIconDictionary(custom.src, key);
}
this.addIMGToIconDictionary(custom.src, key);
});
this.addIconsToCss(customIcons);
}
Expand Down
2 changes: 1 addition & 1 deletion app-latest-build/main.js.map

Large diffs are not rendered by default.

0 comments on commit 8ea0ee9

Please sign in to comment.