Skip to content

Commit

Permalink
Fix export issues
Browse files Browse the repository at this point in the history
  • Loading branch information
thenav56 committed Sep 28, 2023
1 parent 59794d8 commit 6d5002c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/export/exporter/xlsform.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def _add_to_survey_list(nodes, _list, parent_key=None):
# We need to add group for non-leaf nodes only
_node_key = f"category__{node['key']}"
if parent_key:
_node_key = f"{parent_key}__{_node_key}"
_node_key = f"group__{parent_key}__{_node_key}"
_list.append(
XlsSheet.get_survey_raw_group_dict(
_node_key,
Expand Down

0 comments on commit 6d5002c

Please sign in to comment.