From 23553c68ae754a5025f0800440114da5c2853c90 Mon Sep 17 00:00:00 2001 From: igophper <34326532+igophper@users.noreply.github.com> Date: Thu, 6 Mar 2025 09:44:48 +0800 Subject: [PATCH] fix(fail2ban): fix the issue of set fail2ban log path err (#8076) Refs #8075 --- frontend/src/views/toolbox/fail2ban/log-path/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/views/toolbox/fail2ban/log-path/index.vue b/frontend/src/views/toolbox/fail2ban/log-path/index.vue index c7bb168b2..264e3e525 100644 --- a/frontend/src/views/toolbox/fail2ban/log-path/index.vue +++ b/frontend/src/views/toolbox/fail2ban/log-path/index.vue @@ -84,7 +84,7 @@ const onSave = async (formEl: FormInstance | undefined) => { type: 'info', }, ).then(async () => { - await updateFail2ban({ key: 'logPath', value: form.logPath }) + await updateFail2ban({ key: 'logpath', value: form.logPath }) .then(async () => { MsgSuccess(i18n.global.t('commons.msg.operationSuccess')); loading.value = false;