From 905a32a08125a902bdf5021ec1916f0128c3e142 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciar=C3=A1n=20Ainsworth?= Date: Thu, 6 Aug 2020 14:02:17 +0100 Subject: [PATCH] Fix broken subsonic label --- front/src/components/auth/SubsonicTokenForm.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/front/src/components/auth/SubsonicTokenForm.vue b/front/src/components/auth/SubsonicTokenForm.vue index b724d31fb..fa11dd911 100644 --- a/front/src/components/auth/SubsonicTokenForm.vue +++ b/front/src/components/auth/SubsonicTokenForm.vue @@ -135,7 +135,9 @@ export default { return this.$store.state.instance.settings.subsonic.enabled.value }, labels () { - subsonicField: this.$pgettext("Content/Password/Input.label", "Your subsonic API password") + return { + subsonicField: this.$pgettext("Content/Password/Input.label", "Your subsonic API password") + } } } }