mirror of
https://github.com/nicotsx/zerobyte.git
synced 2025-12-23 21:47:47 -05:00
fix: add missing path property to webdav and rclone default values
This commit is contained in:
committed by
Nicolas Meienberger
parent
5f01d6f10d
commit
4dd9b7ffcc
@@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user