Skip to content

Commit

Permalink
fix(export): handle fields for offline rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
jourdain committed Apr 16, 2023
1 parent 47c4f0e commit 8b9920f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions trame_vtk/modules/vtk/serializers/export.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
def handle_property(hash_list, prop_value):
if isinstance(prop_value, list):
for item in prop_value:
handle_property(hash_list, item)
return

if not isinstance(prop_value, dict):
return

Expand Down

0 comments on commit 8b9920f

Please sign in to comment.