mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 03:38:26 -07:00
Rename Episode Instances to Album to fix AlbumModal
This commit is contained in:
parent
bd3bd9a378
commit
02925245c2
25 changed files with 65 additions and 65 deletions
|
@ -121,7 +121,7 @@ class CutoffUnmetConnector extends Component {
|
|||
} = this.props;
|
||||
|
||||
this.props.batchToggleCutoffUnmetEpisodes({
|
||||
episodeIds: selected,
|
||||
albumIds: selected,
|
||||
monitored: filterKey !== 'monitored' || !filterValue
|
||||
});
|
||||
}
|
||||
|
|
|
@ -84,7 +84,7 @@ function CutoffUnmetRow(props) {
|
|||
return (
|
||||
<TableRowCell key={name}>
|
||||
<EpisodeTitleLink
|
||||
episodeId={id}
|
||||
albumId={id}
|
||||
artistId={series.id}
|
||||
episodeEntity={episodeEntities.WANTED_CUTOFF_UNMET}
|
||||
episodeTitle={title}
|
||||
|
@ -123,7 +123,7 @@ function CutoffUnmetRow(props) {
|
|||
className={styles.status}
|
||||
>
|
||||
<EpisodeStatusConnector
|
||||
episodeId={id}
|
||||
albumId={id}
|
||||
trackFileId={trackFileId}
|
||||
episodeEntity={episodeEntities.WANTED_CUTOFF_UNMET}
|
||||
/>
|
||||
|
@ -135,7 +135,7 @@ function CutoffUnmetRow(props) {
|
|||
return (
|
||||
<EpisodeSearchCellConnector
|
||||
key={name}
|
||||
episodeId={id}
|
||||
albumId={id}
|
||||
artistId={series.id}
|
||||
episodeTitle={title}
|
||||
episodeEntity={episodeEntities.WANTED_CUTOFF_UNMET}
|
||||
|
|
|
@ -111,7 +111,7 @@ class MissingConnector extends Component {
|
|||
} = this.props;
|
||||
|
||||
this.props.batchToggleMissingEpisodes({
|
||||
episodeIds: selected,
|
||||
albumIds: selected,
|
||||
monitored: filterKey !== 'monitored' || !filterValue
|
||||
});
|
||||
}
|
||||
|
|
|
@ -83,7 +83,7 @@ function MissingRow(props) {
|
|||
return (
|
||||
<TableRowCell key={name}>
|
||||
<EpisodeTitleLink
|
||||
episodeId={id}
|
||||
albumId={id}
|
||||
artistId={artist.id}
|
||||
episodeEntity={episodeEntities.WANTED_MISSING}
|
||||
episodeTitle={title}
|
||||
|
@ -109,7 +109,7 @@ function MissingRow(props) {
|
|||
// className={styles.status}
|
||||
// >
|
||||
// <EpisodeStatusConnector
|
||||
// episodeId={id}
|
||||
// albumId={id}
|
||||
// trackFileId={trackFileId}
|
||||
// episodeEntity={episodeEntities.WANTED_MISSING}
|
||||
// />
|
||||
|
@ -121,7 +121,7 @@ function MissingRow(props) {
|
|||
return (
|
||||
<EpisodeSearchCellConnector
|
||||
key={name}
|
||||
episodeId={id}
|
||||
albumId={id}
|
||||
artistId={artist.id}
|
||||
episodeTitle={title}
|
||||
episodeEntity={episodeEntities.WANTED_MISSING}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue