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 fbd1672 commit ab782fcCopy full SHA for ab782fc
services/static-webserver/client/source/class/osparc/ui/basic/Thumbnail.js
@@ -83,7 +83,7 @@ qx.Class.define("osparc.ui.basic.Thumbnail", {
83
__applySource: function(val) {
84
const image = this.getChildControl("image");
85
if (val) {
86
- if (osparc.utils.Utils.isValidHttpUrl(val)) {
+ if (!val.startsWith("osparc/") && osparc.utils.Utils.isValidHttpUrl(val)) {
87
osparc.utils.Utils.setUrlSourceToImage(image, val);
88
} else {
89
image.setSource(val);
0 commit comments