We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d53336 commit cc1fa59Copy full SHA for cc1fa59
libs/libcommon/src/libcommon/viewer_utils/features.py
@@ -445,6 +445,8 @@ def get_cell_value(
445
storage_client=storage_client,
446
json_path=json_path,
447
)
448
+ elif isinstance(fieldType, Json):
449
+ return fieldType.decode_example(cell) if fieldType.decode else cell
450
elif isinstance(fieldType, list):
451
if not isinstance(cell, list):
452
raise TypeError("list cell must be a list.")
@@ -535,7 +537,6 @@ def get_cell_value(
535
537
Array5D,
536
538
Translation,
539
TranslationVariableLanguages,
- Json,
540
),
541
):
542
return cell
0 commit comments