diff --git a/src/components/display/pharma_display/PDEntity.vue b/src/components/display/pharma_display/PDEntity.vue
index 7c75ed000bdd2e0c5cc3d08c0b38fee28057a802..de56d8149ec3ccdd76ea970988891cc08fc90594 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>