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
committed by Qstick
parent 6f115d2db3
commit cf6e993a4d
2 changed files with 9 additions and 5 deletions

View File

@@ -93,7 +93,7 @@ class InteractiveImportSelectFolderModalContent extends Component {
>
<TableBody>
{
recentFolders.map((recentFolder) => {
recentFolders.slice(0).reverse().map((recentFolder) => {
return (
<RecentFolderRow
key={recentFolder.folder}