From fe16dd2f72351f8fd6f8414a791f44a057200d81 Mon Sep 17 00:00:00 2001 From: Ignacio Pascual <4764217+ignapas@users.noreply.github.com> Date: Wed, 22 Nov 2023 11:16:11 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Avoid=20displaying=20confusing?= =?UTF-8?q?=20message=20when=20editing=20workbench=20(#5062)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../client/source/class/osparc/desktop/StudyEditor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/static-webserver/client/source/class/osparc/desktop/StudyEditor.js b/services/static-webserver/client/source/class/osparc/desktop/StudyEditor.js index 14fdba55639..a74494942cd 100644 --- a/services/static-webserver/client/source/class/osparc/desktop/StudyEditor.js +++ b/services/static-webserver/client/source/class/osparc/desktop/StudyEditor.js @@ -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");