Skip to content

Commit

Permalink
deposit-ui: fix community header in deposit
Browse files Browse the repository at this point in the history
  • Loading branch information
slint committed Feb 2, 2024
1 parent a90ecb4 commit 9136743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion invenio_app_rdm/records_ui/views/deposits.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def deposit_edit(pid_value, draft=None, draft_files=None, files_locked=True):
community = current_communities.service.read(
id_=community["id"], identity=g.identity
)
community_theme = community.to_dict().get("theme", {})
community_theme = community.to_dict().get("theme", None)
except CommunityDeletedError:
pass

Expand Down

0 comments on commit 9136743

Please sign in to comment.