From af9514c0afc6706f52d6bd19a89c8555d686c26b Mon Sep 17 00:00:00 2001 From: Andrea Vos Date: Sun, 25 Oct 2020 01:39:27 +0200 Subject: [PATCH] #50 pronouns cards - fix --- routes/profileEditor.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/routes/profileEditor.vue b/routes/profileEditor.vue index f3237d4b0..37f77e348 100644 --- a/routes/profileEditor.vue +++ b/routes/profileEditor.vue @@ -136,7 +136,7 @@ const profile = profiles[locale]; return { names: dictToList(profile.names), - pronouns: {}, + pronouns: [], description: '', birthday: profile.birthday, links: Object.keys(profile.links).length ? profile.links : [], @@ -146,12 +146,12 @@ } return { - names: {}, - pronouns: {}, + names: [], + pronouns: [], description: '', birthday: null, - links: {}, - flags: {}, + links: [], + flags: [], words: defaultWords, }; },