Skip to content

Commit

Permalink
Merge branch 'getredash:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewChubatiuk authored Mar 8, 2024
2 parents e3188ea + d554136 commit 4551970
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,9 @@ function EditVisualizationDialog({ dialog, visualization, query, queryResult })

function dismiss() {
const optionsChanged = !isEqual(options, defaultState.originalOptions);
confirmDialogClose(nameChanged || optionsChanged).then(dialog.dismiss);
confirmDialogClose(nameChanged || optionsChanged)
.then(dialog.dismiss)
.catch(() => {});
}

// When editing existing visualization chart type selector is disabled, so add only existing visualization's
Expand Down

0 comments on commit 4551970

Please sign in to comment.