From 5a97de6f5404b6b5660fa8b6f5a4de3f97737ee3 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Fri, 22 May 2026 12:26:23 +0200 Subject: [PATCH] Change migration match exclude/include icons --- CHANGELOG.md | 3 ++- .../migration-entry/MigrationEntrySearchExcludeActions.tsx | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9203d167..f4f7d275 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/features/migration/components/migration-entry/MigrationEntrySearchExcludeActions.tsx b/src/features/migration/components/migration-entry/MigrationEntrySearchExcludeActions.tsx index 742febbc..4e497384 100644 --- a/src/features/migration/components/migration-entry/MigrationEntrySearchExcludeActions.tsx +++ b/src/features/migration/components/migration-entry/MigrationEntrySearchExcludeActions.tsx @@ -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 ? : } + {isExcluded ? : }