1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00

Convert RelativeDateCell to TypeScript

(cherry picked from commit 824ed0a36931ce7aae9aa544a7baf0738dae568c)
This commit is contained in:
Mark McDowall
2024-07-19 20:42:59 -07:00
committed by Bogdan
parent 6e81d5917e
commit fa80608394
16 changed files with 93 additions and 125 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import IconButton from 'Components/Link/IconButton';
import RelativeDateCellConnector from 'Components/Table/Cells/RelativeDateCellConnector';
import RelativeDateCell from 'Components/Table/Cells/RelativeDateCell';
import TableRowCell from 'Components/Table/Cells/TableRowCell';
import TableRow from 'Components/Table/TableRow';
import Tooltip from 'Components/Tooltip/Tooltip';
@@ -143,7 +143,7 @@ class HistoryRow extends Component {
if (name === 'date') {
return (
<RelativeDateCellConnector
<RelativeDateCell
key={name}
date={date}
/>