From 5062806e999a736ed245fc432061fa3c91f3f37b Mon Sep 17 00:00:00 2001 From: burgerni10 Date: Thu, 13 Oct 2022 17:10:29 +0200 Subject: [PATCH] fix(north): archive disabled by default --- src/client/North/Form/NorthForm.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/North/Form/NorthForm.jsx b/src/client/North/Form/NorthForm.jsx index a99ed59e75..fbaeaf0784 100644 --- a/src/client/North/Form/NorthForm.jsx +++ b/src/client/North/Form/NorthForm.jsx @@ -206,7 +206,7 @@ const NorthForm = ({ application, applicationIndex, onChange }) => { label={application.caching.archive.enabled ? 'Archive mode activated' : 'Archive mode deactivated'} name={`${prefix}.caching.archive.enabled`} value={application.caching.archive.enabled} - defaultValue + defaultValue={false} help={
Move to archive folder or delete files when they are sent
} onChange={onChange} />