Skip to content
Snippets Groups Projects
Commit d60d1ab5 authored by Isa H's avatar Isa H
Browse files

add space names

parent 7f30eecc
No related branches found
No related tags found
1 merge request!4More small submit g changes
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment