Fix showing retry button of migration entry
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -79,10 +79,11 @@ const EntryError = ({
|
||||
isMigrating,
|
||||
sourceMangaId,
|
||||
error,
|
||||
status,
|
||||
}: {
|
||||
sourceMangaId: MangaIdInfo['id'];
|
||||
isMigrating: boolean;
|
||||
} & Pick<TMigrationEntry, 'error'> &
|
||||
} & Pick<TMigrationEntry, 'error' | 'status'> &
|
||||
Pick<MigrationMatch, 'id' | 'title'>) => {
|
||||
const { t } = useLingui();
|
||||
|
||||
@@ -252,6 +253,7 @@ export const MigrationDestinationEntry = ({
|
||||
error={error}
|
||||
sourceMangaId={sourceMangaId}
|
||||
isMigrating={isMigrating}
|
||||
status={status}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user