diff options
author | LASER-Yi <[email protected]> | 2023-06-20 23:57:39 +0800 |
---|---|---|
committer | LASER-Yi <[email protected]> | 2023-06-20 23:57:39 +0800 |
commit | ab3c1714830e0f0d8b5f003a854402dc27cb1a7d (patch) | |
tree | 504229db4b158c352a346b5d2ceb3af48470f448 | |
parent | 4921c55bf05189f68bdd6279b957eaffd00e7cf0 (diff) | |
download | bazarr-ab3c1714830e0f0d8b5f003a854402dc27cb1a7d.tar.gz bazarr-ab3c1714830e0f0d8b5f003a854402dc27cb1a7d.zip |
Fix path mapping issuesv1.2.2-beta.22
-rw-r--r-- | frontend/src/components/inputs/FileBrowser.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/frontend/src/components/inputs/FileBrowser.tsx b/frontend/src/components/inputs/FileBrowser.tsx index 96325cda6..38c8a6776 100644 --- a/frontend/src/components/inputs/FileBrowser.tsx +++ b/frontend/src/components/inputs/FileBrowser.tsx @@ -83,6 +83,9 @@ export const FileBrowser: FunctionComponent<FileBrowserProps> = ({ placeholder="Click to start" data={data} value={value} + // Temporary solution of infinite dropdown items, fix later + limit={NaN} + maxDropdownHeight={240} filter={(value, item) => { if (item.value === backKey) { return true; |