1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-23 22:25:56 -04:00

New: Limit recent folders in Manual import to 10 and descending order

Closes #3491
This commit is contained in:
Mark McDowall
2020-01-07 17:36:57 -08:00
parent bc0da03caf
commit d3cd46bb51
2 changed files with 9 additions and 5 deletions
@@ -93,7 +93,7 @@ class InteractiveImportSelectFolderModalContent extends Component {
>
<TableBody>
{
recentFolders.map((recentFolder) => {
recentFolders.slice(0).reverse().map((recentFolder) => {
return (
<RecentFolderRow
key={recentFolder.folder}