From d60d1ab5ca0b375cf2cada4d7d1a4518bad45883 Mon Sep 17 00:00:00 2001
From: isah <isabelle.herbauts@univie.ac.at>
Date: Wed, 27 May 2020 11:59:36 +0200
Subject: [PATCH] add space names

---
 src/components/display/pharma_display/PDEntity.vue | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/components/display/pharma_display/PDEntity.vue b/src/components/display/pharma_display/PDEntity.vue
index 7c75ed0..de56d81 100644
--- a/src/components/display/pharma_display/PDEntity.vue
+++ b/src/components/display/pharma_display/PDEntity.vue
@@ -8,15 +8,15 @@
             <template
               class="valuefield"
               v-for="(gn) in entity['schema:givenName']"
-            >{{ gn['@value'] }}</template>
+            >{{ gn['@value'] +' '}}</template>
             <template
               class="valuefield"
               v-for="(fn) in entity['schema:familyName']"
-            >{{ fn['@value'] }}</template>
+            >{{ fn['@value']+' '}}</template>
             <template class="valuefield" v-for="(fn) in entity['schema:name']">{{ fn['@value'] }}</template>
             <template v-if="entity['schema:affiliation']" class="grey--text">
               <template v-for="(af) in entity['schema:affiliation']">
-                <template class="valuefield" v-for="(afn) in af">{{ afn['@value'] }}</template>
+                <template class="valuefield" v-for="(afn) in af">{{ afn['@value']}}</template>
               </template>
             </template>
           </v-flex>
-- 
GitLab