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 Nov 29, 2024
1 parent eb9eb2c commit d350769
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 17 deletions.
14 changes: 3 additions & 11 deletions app-latest-build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -8092,7 +8092,6 @@ __webpack_require__.r(__webpack_exports__);



var getIconId = _domain_entities_elementTypes__WEBPACK_IMPORTED_MODULE_2__.ElementTypes.getIconId;



Expand Down Expand Up @@ -8375,14 +8374,14 @@ class IconSetCustomizationService {
/** Update Icons **/
addNewIcon(iconName) {
const iconDict = new _domain_entities_dictionary__WEBPACK_IMPORTED_MODULE_1__.Dictionary();
iconDict.add(this.getSrcForIcon(iconName), iconName);
iconDict.add(this.getDataUrlForIcon(iconName), iconName);
this.iconDictionaryService.addIconsToCss(iconDict);
this.addIconToAllIconList(iconName);
}
addIconToAllIconList(iconName) {
this.allIconListItems.add(new rxjs__WEBPACK_IMPORTED_MODULE_7__.BehaviorSubject({
name: iconName,
svg: this.getSrcForIcon(iconName),
svg: this.getDataUrlForIcon(iconName),
isActor: this.isIconActor(iconName),
isWorkObject: this.isIconWorkObject(iconName)
}), iconName);
Expand All @@ -8406,14 +8405,7 @@ class IconSetCustomizationService {
}
});
}
getSrcForIcon(name) {
let iconName;
if (name.includes(_domain_entities_elementTypes__WEBPACK_IMPORTED_MODULE_2__.ElementTypes.DOMAINSTORY)) {
// TODO: td: This returns empty every time!
iconName = getIconId(name);
} else {
iconName = name;
}
getDataUrlForIcon(iconName) {
const rawSrc = this.iconDictionaryService.getIconSource(iconName);
if (!rawSrc) {
return '';
Expand Down
2 changes: 1 addition & 1 deletion app-latest-build/main.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions app-latest-build/styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app-latest-build/styles.css.map

Large diffs are not rendered by default.

0 comments on commit d350769

Please sign in to comment.