From 4dd9b7ffcc8d692eb86c52b9b07da39ce27a7c7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Tr=C3=A1vn=C3=ADk?= Date: Mon, 22 Dec 2025 15:17:05 +0100 Subject: [PATCH] fix: add missing path property to webdav and rclone default values --- app/client/modules/volumes/components/create-volume-form.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/client/modules/volumes/components/create-volume-form.tsx b/app/client/modules/volumes/components/create-volume-form.tsx index 528e5fc..3946f38 100644 --- a/app/client/modules/volumes/components/create-volume-form.tsx +++ b/app/client/modules/volumes/components/create-volume-form.tsx @@ -44,8 +44,8 @@ const defaultValuesForType = { directory: { backend: "directory" as const, path: "/" }, nfs: { backend: "nfs" as const, port: 2049, version: "4.1" as const }, smb: { backend: "smb" as const, port: 445, vers: "3.0" as const }, - webdav: { backend: "webdav" as const, port: 80, ssl: false }, - rclone: { backend: "rclone" as const }, + webdav: { backend: "webdav" as const, port: 80, ssl: false, path: "/" }, + rclone: { backend: "rclone" as const, path: "/" }, }; export const CreateVolumeForm = ({ onSubmit, mode = "create", initialValues, formId, loading, className }: Props) => {