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 Apr 4, 2024
1 parent 94d0ab4 commit 96dab91
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions app-latest-build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -7780,9 +7780,9 @@ class DomainCustomizationService {
}
});
if (!changedActors.length && !changedWorkobjects.length) {
this.changedDomainCofiguration = changedDomain;
this.changedDomainConfiguration = changedDomain;
this.updateIcons(changedDomain);
this.storageService.setStoredDomainConfiguration(this.changedDomainCofiguration);
this.storageService.setStoredDomainConfiguration(this.changedDomainConfiguration);
this.snackbar.open(imported ? 'Configuration imported successfully' : 'Configuration saved sucessfully', undefined, {
duration: _Domain_Common_constants__WEBPACK_IMPORTED_MODULE_3__.SNACKBAR_DURATION,
panelClass: _Domain_Common_constants__WEBPACK_IMPORTED_MODULE_3__.SNACKBAR_SUCCESS
Expand Down Expand Up @@ -7815,8 +7815,8 @@ class DomainCustomizationService {
this.configurationService.exportConfiguration();
}
getAndClearSavedConfiguration() {
const temp = this.changedDomainCofiguration;
this.changedDomainCofiguration = undefined;
const temp = this.changedDomainConfiguration;
this.changedDomainConfiguration = undefined;
return temp;
}
createDomainConfiguration() {
Expand Down Expand Up @@ -7857,11 +7857,11 @@ class DomainCustomizationService {
iconBehaviourSubject.next(icon);
}
updateAllIconBehaviourSubjects() {
const customDomainCofiguration = this.domainConfigurationTypes.value;
const customDomainConfiguration = this.domainConfigurationTypes.value;
this.allIconListItems.keysArray().forEach(iconName => {
if (customDomainCofiguration.actors.includes(iconName)) {
if (customDomainConfiguration.actors.includes(iconName)) {
this.updateIcon(true, false, iconName);
} else if (customDomainCofiguration.workObjects.includes(iconName)) {
} else if (customDomainConfiguration.workObjects.includes(iconName)) {
this.updateIcon(false, true, iconName);
} else {
this.updateIcon(false, false, iconName);
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 96dab91

Please sign in to comment.