1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00

Fixed: Rejoin MovieFiles to Movies to fix Cutoff short term

This commit is contained in:
Qstick
2019-08-05 22:13:03 -04:00
parent fee8244a74
commit 08b642575f
7 changed files with 38 additions and 57 deletions

View File

@@ -1,5 +1,6 @@
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import formatBytes from 'Utilities/Number/formatBytes';
import IconButton from 'Components/Link/IconButton';
import { icons, kinds } from 'Helpers/Props';
import TableRow from 'Components/Table/TableRow';
@@ -70,6 +71,7 @@ class MovieFileEditorRow extends Component {
const {
id,
relativePath,
size,
quality,
qualityCutoffNotMet,
languages
@@ -105,6 +107,13 @@ class MovieFileEditorRow extends Component {
/>
</TableRowCell>
<TableRowCell
className={styles.size}
title={size}
>
{formatBytes(size)}
</TableRowCell>
<TableRowCellButton
className={styles.language}
title="Click to change language"

View File

@@ -16,6 +16,11 @@ const columns = [
label: 'Media Info',
isVisible: true
},
{
name: 'size',
label: 'Size',
isVisible: true
},
{
name: 'languages',
label: 'Languages',