Skip to content

Commit 1520316

Browse files
committed
fix: add trim for DOI
1 parent 77fa4a4 commit 1520316

File tree

1 file changed

+1
-1
lines changed
  • services/frontend/components/graphql/request

1 file changed

+1
-1
lines changed

services/frontend/components/graphql/request/Tab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const emit = defineEmits({
5555
const formatDOIs = computed(() => {
5656
const doisValue = props.dois;
5757
const doisSplitted = doisValue.split(',');
58-
return `"${doisSplitted.join('", "')}"`;
58+
return `"${doisSplitted.join('", "').trim()}"`;
5959
});
6060
6161
function parseUnpaywallAttributesToGraphqlAttributes(args) {

0 commit comments

Comments
 (0)