From 819beba2d3767a240ecd49b2513f18ab2cb81eec Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Sat, 1 Oct 2022 16:48:52 +0200 Subject: [PATCH] fix: type of config stores maxFileSize --- src/stores/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/config.ts b/src/stores/config.ts index 3d7d0ef5e..b36b743ac 100644 --- a/src/stores/config.ts +++ b/src/stores/config.ts @@ -9,7 +9,7 @@ export interface ConfigState { frontendUrl: string, motd: string, linkSharingEnabled: boolean, - maxFileSize: '20MB', + maxFileSize: string, registrationEnabled: boolean, availableMigrators: [], taskAttachmentsEnabled: boolean, -- 2.40.1