1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-19 21:46:50 -04:00

New: Show Custom Format Score for movies in Files tab

Closes #8818
This commit is contained in:
Bogdan
2023-08-12 03:28:13 +03:00
parent efe5c3beb7
commit 431bc14e76
9 changed files with 65 additions and 7 deletions
@@ -1,5 +1,6 @@
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import Icon from 'Components/Icon';
import IconButton from 'Components/Link/IconButton';
import Table from 'Components/Table/Table';
import TableBody from 'Components/Table/TableBody';
@@ -45,10 +46,18 @@ const columns = [
isVisible: true
},
{
name: 'quality.customFormats',
name: 'customFormats',
label: () => translate('Formats'),
isVisible: true
},
{
name: 'customFormatScore',
label: React.createElement(Icon, {
name: icons.SCORE,
title: () => translate('CustomFormatScore')
}),
isVisible: true
},
{
name: 'action',
label: React.createElement(IconButton, { name: icons.ADVANCED_SETTINGS }),