Skip to content

Commit fe16dd2

Browse files
authored
🐛 Avoid displaying confusing message when editing workbench (#5062)
1 parent 9afb78a commit fe16dd2

File tree

1 file changed

+1
-1
lines changed
  • services/static-webserver/client/source/class/osparc/desktop

1 file changed

+1
-1
lines changed

services/static-webserver/client/source/class/osparc/desktop/StudyEditor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ qx.Class.define("osparc.desktop.StudyEditor", {
634634
})
635635
.catch(error => {
636636
if ("status" in error && error.status === 409) {
637-
osparc.FlashMessenger.getInstance().logAs(error.message, "ERROR");
637+
console.log("Flash message blocked"); // Workaround for osparc-issues #1189
638638
} else {
639639
console.error(error);
640640
osparc.FlashMessenger.getInstance().logAs(this.tr("Error saving the study"), "ERROR");

0 commit comments

Comments
 (0)