Fix showing retry button of migration entry

This commit is contained in:
schroda
2026-05-13 04:04:32 +02:00
parent 18c437d77b
commit bc95f0783e
2 changed files with 4 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
### Fixed ### Fixed
- (**Migration**) Fix aborting bulk migration search/execution while webUI is served on a subpath - (**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 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 wrongly positioned mobile progress bar current page indicator
- (**Reader**) Fix mobile progress bar previous/next chapter button visibility on hover and while disabled - (**Reader**) Fix mobile progress bar previous/next chapter button visibility on hover and while disabled

View File

@@ -79,10 +79,11 @@ const EntryError = ({
isMigrating, isMigrating,
sourceMangaId, sourceMangaId,
error, error,
status,
}: { }: {
sourceMangaId: MangaIdInfo['id']; sourceMangaId: MangaIdInfo['id'];
isMigrating: boolean; isMigrating: boolean;
} & Pick<TMigrationEntry, 'error'> & } & Pick<TMigrationEntry, 'error' | 'status'> &
Pick<MigrationMatch, 'id' | 'title'>) => { Pick<MigrationMatch, 'id' | 'title'>) => {
const { t } = useLingui(); const { t } = useLingui();
@@ -252,6 +253,7 @@ export const MigrationDestinationEntry = ({
error={error} error={error}
sourceMangaId={sourceMangaId} sourceMangaId={sourceMangaId}
isMigrating={isMigrating} isMigrating={isMigrating}
status={status}
/> />
); );
} }