Skip to content

Commit b2f7ca4

Browse files
palkerecsenyizzacharo
authored andcommitted
fix(requests): don't hard-code /me for record review request
1 parent 946819a commit b2f7ca4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

invenio_rdm_records/requests/decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def inner(self, *args, **kwargs):
2626
# check if the request is still open, or accepted (closed)
2727
has_review_request = request_item._record.is_open
2828
if has_review_request:
29-
next_html = RequestLink("{+ui}/me/requests/{id}")
29+
next_html = RequestLink("{+ui}/requests/{id}")
3030
else:
3131
next_html = RequestRecordLink("{+ui}/records/{record_id}")
3232

0 commit comments

Comments
 (0)