Skip to content

Commit

Permalink
Remove double quotes from title
Browse files Browse the repository at this point in the history
  • Loading branch information
valearna committed May 14, 2024
1 parent 802305c commit fe72fdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/api/endpoints/curator_dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def on_post(self, req, resp, req_type):
author_submitted = self.db.afp.author_has_submitted(paper_id)
author_modified = self.db.afp.author_has_modified(paper_id)
afp_form_link = self.db.afp.get_afp_form_link(paper_id, self.afp_base_url)
title = paper.title
title = paper.title.replace("\"", "'")
journal = paper.journal
email = self.db.afp.get_contact_emails(paper_id)
pmid = paper.pmid
Expand Down

0 comments on commit fe72fdb

Please sign in to comment.