diff --git a/src/pages/storage/forms/StorageVolumeForm.tsx b/src/pages/storage/forms/StorageVolumeForm.tsx index 22dad7efa1..c5312af841 100644 --- a/src/pages/storage/forms/StorageVolumeForm.tsx +++ b/src/pages/storage/forms/StorageVolumeForm.tsx @@ -7,7 +7,7 @@ import { useParams } from "react-router-dom"; import { updateMaxHeight } from "util/updateMaxHeight"; import useEventListener from "@use-it/event-listener"; import StorageVolumeFormMenu, { - BLOCK, + FILESYSTEM, MAIN_CONFIGURATION, SNAPSHOTS, ZFS, @@ -140,7 +140,7 @@ const StorageVolumeForm: FC = ({ formik }) => { {section === SNAPSHOTS && ( )} - {section === BLOCK && } + {section === FILESYSTEM && } {section === ZFS && } diff --git a/src/pages/storage/forms/StorageVolumeFormBlock.tsx b/src/pages/storage/forms/StorageVolumeFormBlock.tsx index da3ce9b9a6..460902674a 100644 --- a/src/pages/storage/forms/StorageVolumeFormBlock.tsx +++ b/src/pages/storage/forms/StorageVolumeFormBlock.tsx @@ -49,7 +49,23 @@ const StorageVolumeFormBlock: FC = ({ formik }) => { name: "block_mount_options", defaultValue: "", help: "Mount options for block devices", - children: , + children: ( + + For a list of available options visit{" "} + + mount manpages + + + } + /> + ), }), ]} /> diff --git a/src/pages/storage/forms/StorageVolumeFormMenu.tsx b/src/pages/storage/forms/StorageVolumeFormMenu.tsx index 0670a97ad8..41d620ed4f 100644 --- a/src/pages/storage/forms/StorageVolumeFormMenu.tsx +++ b/src/pages/storage/forms/StorageVolumeFormMenu.tsx @@ -8,7 +8,7 @@ import { StorageVolumeFormValues } from "pages/storage/forms/StorageVolumeForm"; export const MAIN_CONFIGURATION = "Main configuration"; export const SNAPSHOTS = "Snapshots"; -export const BLOCK = "Block"; +export const FILESYSTEM = "Filesystem"; export const ZFS = "ZFS"; interface Props { @@ -73,7 +73,7 @@ const StorageVolumeFormMenu: FC = ({ {contentType === "filesystem" && ["zfs", "lvm", "ceph"].includes(poolDriver) && (