diff --git a/CHANGELOG.md b/CHANGELOG.md index 63ee6b21..494f1b09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). ### Fixed - (**Migration**) Fix aborting bulk migration search/execution while webUI is served on a subpath +- (**Migration**) Fix retry button never being shown for failed search/migration entries - (**Reader**) Fix scrollbar appearing with "fit to widt/height/screen" page scale mode and applied safe area insets - (**Reader**) Fix wrongly positioned mobile progress bar current page indicator - (**Reader**) Fix mobile progress bar previous/next chapter button visibility on hover and while disabled diff --git a/src/features/migration/components/migration-entry/MigrationDestinationEntry.tsx b/src/features/migration/components/migration-entry/MigrationDestinationEntry.tsx index 1c2b7a9d..d45741c6 100644 --- a/src/features/migration/components/migration-entry/MigrationDestinationEntry.tsx +++ b/src/features/migration/components/migration-entry/MigrationDestinationEntry.tsx @@ -79,10 +79,11 @@ const EntryError = ({ isMigrating, sourceMangaId, error, + status, }: { sourceMangaId: MangaIdInfo['id']; isMigrating: boolean; -} & Pick & +} & Pick & Pick) => { const { t } = useLingui(); @@ -252,6 +253,7 @@ export const MigrationDestinationEntry = ({ error={error} sourceMangaId={sourceMangaId} isMigrating={isMigrating} + status={status} /> ); }