1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

Fixed: Free space and missing for selected root folder value

This commit is contained in:
Bogdan
2025-04-15 19:46:59 +03:00
parent c52f9c5ec4
commit cfd25e974f
5 changed files with 82 additions and 82 deletions
@@ -18,18 +18,16 @@ interface RootFolderSelectInputOptionProps
isWindows?: boolean;
}
function RootFolderSelectInputOption(props: RootFolderSelectInputOptionProps) {
const {
id,
value,
freeSpace,
isMissing,
movieFolder,
isMobile,
isWindows,
...otherProps
} = props;
function RootFolderSelectInputOption({
id,
value,
freeSpace,
isMissing,
movieFolder,
isMobile,
isWindows,
...otherProps
}: RootFolderSelectInputOptionProps) {
const slashCharacter = isWindows ? '\\' : '/';
return (