Skip to content

Commit

Permalink
Fix acceptances tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner authored and renovate[bot] committed Aug 7, 2024
1 parent 7e786ed commit 1b9880c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/shared_config_manager/templates/source.html.mako
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +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():
&nbsp;&nbsp;&nbsp;&nbsp;${k | h} = ${v | h}<br />
%for k in sorted(value.keys()):
&nbsp;&nbsp;&nbsp;&nbsp;${k | h} = ${value[k] | h}<br />
%endfor
%else:
<b>${key_format(key) | h}</b>: ${value | h}<br />
Expand Down

0 comments on commit 1b9880c

Please sign in to comment.