Change migration match exclude/include icons
This commit is contained in:
@@ -24,6 +24,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
||||
- (**Migration**) Prevent a manual selected match from getting automatically overwritten by a new-found match
|
||||
- (**Migration**) Abort active search when selecting a match through the manual search
|
||||
- (**Migration**) Sort unselected matched entries by 1. their latest chapter, 2. their source priority, 3. their title
|
||||
- (**Migration**) Change migration match exclude/include icons
|
||||
|
||||
### Fixed
|
||||
|
||||
@@ -41,8 +42,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
||||
- (**Reader**) Fix mobile progress bar previous/next chapter button visibility on hover and while disabled
|
||||
- (**Reader**) Fix jumping back to the first page on window resize
|
||||
- (**Reader**) Fix chapter not getting marked as read in continuous reading mode in case the last page is not big enough to get marked as the current page
|
||||
- (**Browse**) Fix showing only nsfw sources in the browse source page when the "show nsfw" setting is disabled
|
||||
- (**Reader**) Fix infinite scrolling with disabled transition page
|
||||
- (**Browse**) Fix showing only nsfw sources in the browse source page when the "show nsfw" setting is disabled
|
||||
|
||||
## [20260509.01] (r3147) - 2026-05-09
|
||||
|
||||
|
||||
@@ -22,6 +22,8 @@ import { plural } from '@lingui/core/macro';
|
||||
import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
|
||||
import ExpandLessIcon from '@mui/icons-material/ExpandLess';
|
||||
import ButtonGroup from '@mui/material/ButtonGroup';
|
||||
import RemoveCircleOutlineOutlinedIcon from '@mui/icons-material/RemoveCircleOutlineOutlined';
|
||||
import AddCircleOutlineOutlinedIcon from '@mui/icons-material/AddCircleOutlineOutlined';
|
||||
|
||||
export const MigrationEntrySearchExcludeActions = ({
|
||||
hasResults,
|
||||
@@ -85,7 +87,7 @@ export const MigrationEntrySearchExcludeActions = ({
|
||||
isExcluded ? MigrationManager.includeManga(mangaId) : MigrationManager.excludeManga(mangaId)
|
||||
}
|
||||
>
|
||||
{isExcluded ? <AddIcon /> : <CloseIcon />}
|
||||
{isExcluded ? <AddCircleOutlineOutlinedIcon /> : <RemoveCircleOutlineOutlinedIcon />}
|
||||
</CustomButtonIcon>
|
||||
</CustomTooltip>
|
||||
</ButtonGroup>
|
||||
|
||||
Reference in New Issue
Block a user