We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e9aff4 commit 8cb80b2Copy full SHA for 8cb80b2
services/static-webserver/client/source/class/osparc/FlashMessenger.js
@@ -105,13 +105,14 @@ qx.Class.define("osparc.FlashMessenger", {
105
allowGrowX: false,
106
});
107
errorLabel.addListener("tap", () => {
108
+ const currentStudy = osparc.store.Store.getInstance().getCurrentStudy();
109
const dataToClipboard = {
110
message,
111
supportId,
112
timestamp: new Date().toString(),
113
url: window.location.href,
114
releaseTag: osparc.utils.Utils.getReleaseTag(),
- studyId: osparc.store.Store.getInstance().getCurrentStudy() || "",
115
+ studyId: currentStudy ? currentStudy.getUuid() : "",
116
}
117
osparc.utils.Utils.copyTextToClipboard(osparc.utils.Utils.prettifyJson(dataToClipboard));
118
0 commit comments