Skip to content

Commit

Permalink
Fix acceptences tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Aug 7, 2024
1 parent a9a5b39 commit 65c31dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/shared_config_manager/templates/source.html.mako
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@
<b>${key_format(key) | h}</b>: ${', '.join(value) | h}<br />
%elif isinstance(value, dict):
<b>${key_format(key) | h}</b>:<br />
%for k, v in value.items():
%for k in sorted(value.keys()):
v = value[k]
&nbsp;&nbsp;&nbsp;&nbsp;${k | h} = ${v | h}<br />
%endfor
%else:
Expand Down

0 comments on commit 65c31dc

Please sign in to comment.