Skip to content

Commit

Permalink
Fix environment variable order
Browse files Browse the repository at this point in the history
Especially for the CI
  • Loading branch information
sbrunner committed Aug 9, 2024
1 parent cfbc036 commit 33e3624
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 @@ -92,8 +92,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 33e3624

Please sign in to comment.