Skip to content

Commit

Permalink
fix(fail2ban): fix the issue of set fail2ban log path err (#8076)
Browse files Browse the repository at this point in the history
Refs #8075
  • Loading branch information
igophper authored Mar 6, 2025
1 parent 4dd1eb7 commit 23553c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/toolbox/fail2ban/log-path/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 23553c6

Please sign in to comment.