Fixed: Size on disk with seasons over 100

Fixes #3774
This commit is contained in:
Mark McDowall 2020-05-24 23:39:57 -07:00
parent ebe2ad1520
commit b28d329654
2 changed files with 5 additions and 1 deletions

View File

@ -43,7 +43,7 @@
.left {
display: flex;
align-items: center;
flex: 0 1 300px;
flex: 0 1 350px;
}
.left,

View File

@ -530,4 +530,8 @@ SeriesDetailsSeason.propTypes = {
onSearchPress: PropTypes.func.isRequired
};
SeriesDetailsSeason.defaultProps = {
statistics: {}
};
export default SeriesDetailsSeason;