Integrated channel filter, partially restored actor bio.

This commit is contained in:
2024-01-10 02:00:38 +01:00
parent d242eb3b73
commit 63f2bdbe60
19 changed files with 1221 additions and 159 deletions

View File

@@ -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';