Integrated channel filter, partially restored actor bio.
This commit is contained in:
@@ -32,13 +32,13 @@
|
||||
</span>
|
||||
|
||||
<span
|
||||
v-if="actor.birthCountry"
|
||||
:title="`Born in ${actor.birthCountry.name}`"
|
||||
v-if="actor.origin.country"
|
||||
:title="`Born in ${actor.origin.country.name}`"
|
||||
class="country"
|
||||
>
|
||||
{{ actor.birthCountry.alpha2 }}
|
||||
{{ actor.origin.country.alpha2 }}
|
||||
<img
|
||||
:src="`/img/flags/${actor.birthCountry.alpha2.toLowerCase()}.svg`"
|
||||
:src="`/img/flags/${actor.origin.country.alpha2.toLowerCase()}.svg`"
|
||||
class="flag"
|
||||
>
|
||||
</span>
|
||||
@@ -47,7 +47,7 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { formatDate } from '#/src/format.js';
|
||||
import { formatDate } from '#/utils/format.js';
|
||||
|
||||
import Gender from './gender.vue';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user