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 0fbb0f5 + 2d6042b commit fd15298Copy full SHA for fd15298
src/superannotate/__init__.py
@@ -3,7 +3,7 @@
3
import sys
4
5
6
-__version__ = "4.4.29"
+__version__ = "4.4.30b1"
7
8
os.environ.update({"sa_version": __version__})
9
sys.path.append(os.path.split(os.path.realpath(__file__))[0])
src/superannotate/lib/app/interface/sdk_interface.py
@@ -303,7 +303,7 @@ def retrieve_context(
303
and component["id"] == component_pk
304
):
305
return True, component.get("context")
306
- if component["type"] == "group" and "children" in component:
+ if component["type"] in ("group", "grid") and "children" in component:
307
found, val = retrieve_context(component["children"], component_pk)
308
if found:
309
return found, val
0 commit comments