diff --git a/client/src/components/Character.vue b/client/src/components/Character.vue
index 7c758c0..aee8a9e 100644
--- a/client/src/components/Character.vue
+++ b/client/src/components/Character.vue
@@ -58,7 +58,7 @@ export default {
{
text:
this.character !== null && this.character !== undefined
- ? this.character.name
+ ? this.character.name || this.$route.params.character
: this.$route.params.character,
active: true,
},
diff --git a/client/src/components/Characters.vue b/client/src/components/Characters.vue
index 9273c72..3317451 100644
--- a/client/src/components/Characters.vue
+++ b/client/src/components/Characters.vue
@@ -1,29 +1,56 @@
-
-
-
-
-
-
-
-
-
- {{ character.name || character_id }}
-
- {{ character.summary }}
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ character.name || character_id }}
+
+
+
+
+ {{ character.summary }}
+
+
+
+
+
+
-