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 Sep 25, 2024
1 parent 9d2c697 commit 79bd9aa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion app-latest-build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -5839,7 +5839,13 @@ class ExportService {
this.htmlPresentationService.downloadHTMLPresentation(filename, modeler).then();
}
getStoryForDownload() {
const story = this.rendererService.getStory();
let story = this.rendererService.getStory().sort((objA, objB) => {
if (objA.id !== undefined && objB.id !== undefined) {
return objA.id.localeCompare(objB.id);
} else {
return 0;
}
});
story.push({
info: this.titleService.getDescription()
});
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 79bd9aa

Please sign in to comment.