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.
2 parents 24741d2 + cfe0a7a commit 5c39bbdCopy full SHA for 5c39bbd
src/superannotate/lib/app/interface/sdk_interface.py
@@ -640,6 +640,9 @@ def retrieve_context(
640
and component["id"] == component_pk
641
and component["type"] == "webComponent"
642
):
643
+ context = component.get("context")
644
+ if context is None or context == "":
645
+ return False, None
646
return True, json.loads(component.get("context"))
647
648
except KeyError as e:
0 commit comments