1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-24 22:36:19 -04:00

Fixed: Use Manage Episodes instead of Manual Import for title when managing episodes for a series

This commit is contained in:
Mark McDowall
2022-04-09 21:52:46 -07:00
parent d376ae2f9f
commit 8fa6e5ec6d
11 changed files with 46 additions and 9 deletions
@@ -19,6 +19,7 @@ function SelectLanguageModalContent(props) {
isPopulated,
error,
items,
modalTitle,
onModalClose,
onLanguageSelect
} = props;
@@ -33,7 +34,7 @@ function SelectLanguageModalContent(props) {
return (
<ModalContent onModalClose={onModalClose}>
<ModalHeader>
Manual Import - Select Language
{modalTitle} - Select Language
</ModalHeader>
<ModalBody>
@@ -80,6 +81,7 @@ SelectLanguageModalContent.propTypes = {
isPopulated: PropTypes.bool.isRequired,
error: PropTypes.object,
items: PropTypes.arrayOf(PropTypes.object).isRequired,
modalTitle: PropTypes.string.isRequired,
onLanguageSelect: PropTypes.func.isRequired,
onModalClose: PropTypes.func.isRequired
};