Skip to content

Commit

Permalink
Include root module in command ID
Browse files Browse the repository at this point in the history
  • Loading branch information
esoergel committed Jan 25, 2024
1 parent 8363801 commit 903456d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion corehq/apps/app_manager/suite_xml/post_process/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ def _frame_children_for_module(self, module, include_user_selections=True):
if child not in frame_children:
frame_children.append(child)
else:
module_command = id_strings.menu_id(module)
module_command = id_strings.menu_id(module, WorkflowHelper._get_id_suffix(module))
if module_command != id_strings.ROOT:
frame_children.append(CommandId(module_command))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@
<stack>
<create>
<command value="'m6'"/>
<command value="'m7'"/>
<command value="'m7.m6'"/>
</create>
</stack>
</entry>
Expand Down

0 comments on commit 903456d

Please sign in to comment.