1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-17 21:26:22 -04:00

Convert Table to TypeScript

(cherry picked from commit 699120a8fd54be9e70fb9a83298f94c8cb6a80bb)
This commit is contained in:
Mark McDowall
2025-01-06 16:48:33 -08:00
committed by Bogdan
parent 9228e5dea0
commit 8caa839d99
55 changed files with 1011 additions and 1287 deletions

View File

@@ -3,13 +3,14 @@ import { useDispatch, useSelector } from 'react-redux';
import AppState from 'App/State/AppState';
import FieldSet from 'Components/FieldSet';
import LoadingIndicator from 'Components/Loading/LoadingIndicator';
import Column from 'Components/Table/Column';
import Table from 'Components/Table/Table';
import TableBody from 'Components/Table/TableBody';
import { fetchCommands } from 'Store/Actions/commandActions';
import translate from 'Utilities/String/translate';
import QueuedTaskRow from './QueuedTaskRow';
const columns = [
const columns: Column[] = [
{
name: 'trigger',
label: '',
@@ -42,6 +43,7 @@ const columns = [
},
{
name: 'actions',
label: '',
isVisible: true,
},
];