diff --git a/assets/components/actor/actor.vue b/assets/components/actor/actor.vue
index 9a5eedf2..0cb23c53 100644
--- a/assets/components/actor/actor.vue
+++ b/assets/components/actor/actor.vue
@@ -20,30 +20,50 @@
{{ actor.aliases.join(', ') }}
-
- Born in
- {{ actor.city }}
- {{ actor.country || 'Unknown' }}
-
-
-
+
Date of birth
- {{ actor.birthdate || 'Unknown' }}
+ {{ formatDate(actor.birthdate, 'MMMM D, YYYY') }} ({{ age }})
-
+
+ Born in
+
+
+ {{ actor.birthCountry.name }}
+
+
+ {{ actor.birthPlace }}
+
+
+
+ Lives in
+
+
+ {{ actor.residenceCountry.name }}
+
+
+ {{ actor.residencePlace }}
+
+
+
Ethnicity
- {{ actor.ethnicity || 'Unknown' }}
+ {{ actor.ethnicity }}
-
+
Height
- {{ actor.height || 'Unknown' }}
+ {{ actor.height }}
-
+
Boobs
- Size: {{ actor.boobSize || 'Unknown' }}
+ {{ actor.boobSize }}
{{ actor.boobsNatural ? 'Natural' : 'Enhanced' }}
@@ -57,9 +77,15 @@