Skip to content

Commit

Permalink
Use correct titles for manga actions in selection mode (#529)
Browse files Browse the repository at this point in the history
Should have been changed with ecea80f
  • Loading branch information
schroda authored Dec 30, 2023
1 parent edc2a62 commit 37d6b84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/manga/MangaActionMenuItems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,12 @@ export const MangaActionMenuItems = ({ manga, handleSelection, selectedMangas =
setHideMenu(true);
}}
Icon={Label}
title={t('manga.action.category.label.action')}
title={getMenuItemTitle('change_categories', selectedMangas.length)}
/>
<MenuItem
onClick={() => performAction('remove_from_library', selectedMangas)}
Icon={FavoriteBorderIcon}
title={t('manga.action.library.remove.label.action')}
title={getMenuItemTitle('remove_from_library', selectedMangas.length)}
/>
{isCategorySelectOpen && (
<CategorySelect
Expand Down

0 comments on commit 37d6b84

Please sign in to comment.