From 6c46e18856c8d75f90c21d04dcc977e8eca0637b Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 6 Sep 2021 16:58:08 +0200 Subject: [PATCH] Misc fixes --- app/src/i18n/locales/en.json | 2 +- app/src/views/app/AppConfigPanel.vue | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/i18n/locales/en.json b/app/src/i18n/locales/en.json index d47a2da3..f4797405 100644 --- a/app/src/i18n/locales/en.json +++ b/app/src/i18n/locales/en.json @@ -175,7 +175,7 @@ "githubLink": "Url must be a valid Github link to a repository", "name": "Names may not include special characters except  ,.'-", "minValue": "Value must be a number equal or greater than {min}.", - "maxValue": "Value must be a number equal or lesser than {min}.", + "maxValue": "Value must be a number equal or lesser than {max}.", "notInUsers": "The user '{value}' already exists.", "number": "Value must be a number.", "passwordLenght": "Password must be at least 8 characters long.", diff --git a/app/src/views/app/AppConfigPanel.vue b/app/src/views/app/AppConfigPanel.vue index 059c8316..22a9a900 100644 --- a/app/src/views/app/AppConfigPanel.vue +++ b/app/src/views/app/AppConfigPanel.vue @@ -64,7 +64,7 @@ export default { data () { return { queries: [ - ['GET', `apps/${this.id}/config-panel?mode=full`], + ['GET', `apps/${this.id}/config-panel?full`], ['GET', { uri: 'domains' }], ['GET', { uri: 'domains/main', storeKey: 'main_domain' }], ['GET', { uri: 'users' }] @@ -108,7 +108,7 @@ export default { forms[id] = {} validations_[id] = {} errors_[id] = {} - for (const { id_, name, help, visibleIf, options } of sections) { + for (const { id_, name, help, visibleIf, options } of sections) { const section_ = { id: id_, visibleIf } if (help) section_.help = formatI18nField(help) if (name) section_.name = formatI18nField(name)