1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00

New: Show ExtraFiles in UI

This commit is contained in:
Qstick
2020-03-03 22:55:17 -05:00
parent 3576f529ec
commit f338941cfc
15 changed files with 505 additions and 8 deletions
@@ -0,0 +1,10 @@
.container {
margin-top: 20px;
border: 1px solid $borderColor;
border-radius: 4px;
background-color: $white;
&:last-of-type {
margin-bottom: 0;
}
}
@@ -1,6 +1,7 @@
import PropTypes from 'prop-types';
import React from 'react';
import MovieFileEditorTableContentConnector from './MovieFileEditorTableContentConnector';
import styles from './MovieFileEditorTable.css';
function MovieFileEditorTable(props) {
const {
@@ -8,9 +9,11 @@ function MovieFileEditorTable(props) {
} = props;
return (
<MovieFileEditorTableContentConnector
movieId={movieId}
/>
<div className={styles.container}>
<MovieFileEditorTableContentConnector
movieId={movieId}
/>
</div>
);
}