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 e413b13 commit 6eadaac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion app-latest-build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -8413,7 +8413,10 @@ class IconDictionaryService {
addNewIconsToDictionary(customIcons) {
customIcons.keysArray().forEach(key => {
const custom = customIcons.get(key);
this.addIMGToIconDictionary(custom.src, key);
if (custom != null) {
// ignore broken custom icons
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 6eadaac

Please sign in to comment.