From c4ddffa03b4cc50f9fd95aaf72580bb07012f495 Mon Sep 17 00:00:00 2001 From: MattIPv4 Date: Thu, 10 Dec 2020 12:58:15 +0000 Subject: [PATCH] Typo --- src/nginxconfig/templates/global_sections/php.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nginxconfig/templates/global_sections/php.vue b/src/nginxconfig/templates/global_sections/php.vue index c4a4340..6f62963 100644 --- a/src/nginxconfig/templates/global_sections/php.vue +++ b/src/nginxconfig/templates/global_sections/php.vue @@ -127,11 +127,11 @@ THE SOFTWARE. ...computedFromDefaults(defaults, 'php'), // Getters & setters for the delegated data phpServerOptions() { return Object.entries(this.$props.data.phpServer.options) - .map(([key, value]) => ({ label: `${this.$t(value)}${key ? `: ${key}}` : ''}`, value: key })); + .map(([key, value]) => ({ label: `${this.$t(value)}${key ? `: ${key}` : ''}`, value: key })); }, phpBackupServerOptions() { return Object.entries(this.$props.data.phpBackupServer.options) - .map(([key, value]) => ({ label: `${this.$t(value)}${key ? `: ${key}}` : ''}`, value: key })); + .map(([key, value]) => ({ label: `${this.$t(value)}${key ? `: ${key}` : ''}`, value: key })); }, }, watch: {