Skip to content

Commit

Permalink
πŸ› Avoid displaying confusing message when editing workbench (#5062)
Browse files Browse the repository at this point in the history
  • Loading branch information
ignapas authored Nov 22, 2023
1 parent 9afb78a commit fe16dd2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ qx.Class.define("osparc.desktop.StudyEditor", {
})
.catch(error => {
if ("status" in error && error.status === 409) {
osparc.FlashMessenger.getInstance().logAs(error.message, "ERROR");
console.log("Flash message blocked"); // Workaround for osparc-issues #1189
} else {
console.error(error);
osparc.FlashMessenger.getInstance().logAs(this.tr("Error saving the study"), "ERROR");
Expand Down

0 comments on commit fe16dd2

Please sign in to comment.