Skip to content

Commit

Permalink
edit should keep old change
Browse files Browse the repository at this point in the history
  • Loading branch information
trim21 committed Sep 3, 2024
1 parent 0adf4cd commit 9725ff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/contrib.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ async def _(request: AuthorizedRequest, patch_id: UUID) -> Response[Any]:
return Template(
"suggest.html.jinja2",
context={
"data": {key: value for key, value in p.items() if value is not None} | wiki,
"data": wiki | {key: value for key, value in p.items() if value is not None},
"patch_id": patch_id,
},
)
Expand Down

0 comments on commit 9725ff7

Please sign in to comment.