mirror of https://github.com/Radarr/Radarr
Move the Movie column next to the Folder colum for easier matching (#5078)
Fixes: #5075
This commit is contained in:
parent
4bac44e893
commit
c22ae12c1f
|
@ -28,6 +28,13 @@ function ImportMovieHeader(props) {
|
||||||
{translate('Folder')}
|
{translate('Folder')}
|
||||||
</VirtualTableHeaderCell>
|
</VirtualTableHeaderCell>
|
||||||
|
|
||||||
|
<VirtualTableHeaderCell
|
||||||
|
className={styles.movie}
|
||||||
|
name="movie"
|
||||||
|
>
|
||||||
|
{translate('Movie')}
|
||||||
|
</VirtualTableHeaderCell>
|
||||||
|
|
||||||
<VirtualTableHeaderCell
|
<VirtualTableHeaderCell
|
||||||
className={styles.monitor}
|
className={styles.monitor}
|
||||||
name="monitor"
|
name="monitor"
|
||||||
|
@ -48,13 +55,6 @@ function ImportMovieHeader(props) {
|
||||||
>
|
>
|
||||||
{translate('QualityProfile')}
|
{translate('QualityProfile')}
|
||||||
</VirtualTableHeaderCell>
|
</VirtualTableHeaderCell>
|
||||||
|
|
||||||
<VirtualTableHeaderCell
|
|
||||||
className={styles.movie}
|
|
||||||
name="movie"
|
|
||||||
>
|
|
||||||
{translate('Movie')}
|
|
||||||
</VirtualTableHeaderCell>
|
|
||||||
</VirtualTableHeader>
|
</VirtualTableHeader>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,6 +34,13 @@ function ImportMovieRow(props) {
|
||||||
{id}
|
{id}
|
||||||
</VirtualTableRowCell>
|
</VirtualTableRowCell>
|
||||||
|
|
||||||
|
<VirtualTableRowCell className={styles.movie}>
|
||||||
|
<ImportMovieSelectMovieConnector
|
||||||
|
id={id}
|
||||||
|
isExistingMovie={isExistingMovie}
|
||||||
|
/>
|
||||||
|
</VirtualTableRowCell>
|
||||||
|
|
||||||
<VirtualTableRowCell className={styles.monitor}>
|
<VirtualTableRowCell className={styles.monitor}>
|
||||||
<FormInputGroup
|
<FormInputGroup
|
||||||
type={inputTypes.MOVIE_MONITORED_SELECT}
|
type={inputTypes.MOVIE_MONITORED_SELECT}
|
||||||
|
@ -60,13 +67,6 @@ function ImportMovieRow(props) {
|
||||||
onChange={onInputChange}
|
onChange={onInputChange}
|
||||||
/>
|
/>
|
||||||
</VirtualTableRowCell>
|
</VirtualTableRowCell>
|
||||||
|
|
||||||
<VirtualTableRowCell className={styles.movie}>
|
|
||||||
<ImportMovieSelectMovieConnector
|
|
||||||
id={id}
|
|
||||||
isExistingMovie={isExistingMovie}
|
|
||||||
/>
|
|
||||||
</VirtualTableRowCell>
|
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue