diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c5fbe84..a80c8277 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). - (**Migration**) Show the exclude/include button only for an entry with a selected match - (**Migration**) Allow resuming a migration only in a secure context (localhost or https) - (**Migration**) Show dialog on manual search selection to optionally open the search result entry instead of selecting it +- (**Migration**) Show "manual search matches" under "other matches" - (**Source/Extension**) Rename language "All" to "Multi" - (**Reader**) Simplify changing settings in desktop sidebar - (**Reader**) Ignore tap zone clicks while window does not have focus diff --git a/src/features/migration/components/migration-entry/MigrationEntry.tsx b/src/features/migration/components/migration-entry/MigrationEntry.tsx index aabd3b07..8db07c49 100644 --- a/src/features/migration/components/migration-entry/MigrationEntry.tsx +++ b/src/features/migration/components/migration-entry/MigrationEntry.tsx @@ -223,7 +223,7 @@ export const MigrationEntry = memo( }, [entry.searchMatches, entry.selectedMatchMangaId]); const otherMatches = useMemo( () => - entry.searchMatches + [...entry.searchMatches, ...entry.manualMatches] .filter((searchMatch) => searchMatch.id !== entry.selectedMatchMangaId) .sort((a, b) => { const sortByLatestChapter = (b.latestChapterNumber ?? 0) - (a.latestChapterNumber ?? 0);