mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-13 08:33:58 -07:00
New: Health check for import lists with missing root folders
New: Show missing root folder path in edit for Import List (cherry picked from commit ae196af2ad368d49fde2358f0987ed7650c7f29c) Closes #1998
This commit is contained in:
parent
af1e2fe2eb
commit
bfb86dafc9
8 changed files with 127 additions and 7 deletions
|
@ -17,7 +17,7 @@ function RootFolderSelectInputSelectedValue(props) {
|
|||
|
||||
const slashCharacter = isWindows ? '\\' : '/';
|
||||
|
||||
const text = value === '' ? name : `[${name}] ${value}`;
|
||||
const text = name === '' ? value : `[${name}] ${value}`;
|
||||
|
||||
return (
|
||||
<EnhancedSelectInputSelectedValue
|
||||
|
@ -59,6 +59,7 @@ RootFolderSelectInputSelectedValue.propTypes = {
|
|||
};
|
||||
|
||||
RootFolderSelectInputSelectedValue.defaultProps = {
|
||||
name: '',
|
||||
includeFreeSpace: true
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue