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 a509496 commit b7ae5c5Copy full SHA for b7ae5c5
src/vitessce/widget.py
@@ -212,10 +212,8 @@ def get_uid_str(uid):
212
const updatedOptions = { ...f.options };
213
OPTIONS_URL_KEYS.forEach(key => {
214
const optionValue = updatedOptions[key];
215
- if (optionValue) {
216
- if (!isAbsoluteUrl(optionValue)) {
217
- updatedOptions[key] = `${origin}${baseUrl}${optionValue}`;
218
- }
+ if (optionValue && !isAbsoluteUrl(optionValue)) {
+ updatedOptions[key] = `${origin}${baseUrl}${optionValue}`;
219
}
220
});
221
updatedFileDef.options = updatedOptions;
0 commit comments