Skip to content

Commit

Permalink
[DE PE SSE] Fix smart arts generating
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaSvinareva committed Oct 3, 2023
1 parent fbd1d75 commit 6d1843c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/documenteditor/main/app/controller/Toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -3548,7 +3548,7 @@ define([
if (this.currentSmartArtMenu) {
this.currentSmartArtMenu.menu.alignPosition();
}
if (this.delayedSmartArt) {
if (this.delayedSmartArt !== undefined) {
var delayedSmartArt = this.delayedSmartArt;
this.delayedSmartArt = undefined;
this.generateSmartArt(delayedSmartArt);
Expand Down
2 changes: 1 addition & 1 deletion apps/presentationeditor/main/app/controller/Toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -2841,7 +2841,7 @@ define([
if (this.currentSmartArtMenu) {
this.currentSmartArtMenu.menu.alignPosition();
}
if (this.delayedSmartArt) {
if (this.delayedSmartArt !== undefined) {
var delayedSmartArt = this.delayedSmartArt;
this.delayedSmartArt = undefined;
this.generateSmartArt(delayedSmartArt);
Expand Down
2 changes: 1 addition & 1 deletion apps/spreadsheeteditor/main/app/controller/Toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -5073,7 +5073,7 @@ define([
if (this.currentSmartArtMenu) {
this.currentSmartArtMenu.menu.alignPosition();
}
if (this.delayedSmartArt) {
if (this.delayedSmartArt !== undefined) {
var delayedSmartArt = this.delayedSmartArt;
this.delayedSmartArt = undefined;
this.generateSmartArt(delayedSmartArt);
Expand Down

0 comments on commit 6d1843c

Please sign in to comment.