Skip to content

Commit 54dae79

Browse files
authored
Merge pull request #64 from GhentCDH/fix/actor_name
fix: actor name order (again)
2 parents 8d583f8 + 13c4dbc commit 54dae79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/assets/js/components/Actor/ActorDetailsFlat.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<template>
22
<div class="actor actor--flat">
33
<FormatValue :value="actor.capacity" type="id_name" :unknown="false" />
4-
<FormatValue :value="actor.name.name" :unknown="false" />
54
<FormatValue :value="actor.place" type="id_name" :unknown="false" />
5+
<FormatValue :value="actor.name.name" :unknown="false" />
66
</div>
77
</template>
88

0 commit comments

Comments
 (0)