1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-24 22:35:49 -04:00

Convert TagList components to TypeScript

(cherry picked from commit 20e1a8d116cf60d619f9525cc82867483d38df84)
This commit is contained in:
Mark McDowall
2024-12-22 18:51:59 -08:00
committed by Bogdan
parent 937557e214
commit 371ac0921d
11 changed files with 62 additions and 68 deletions
@@ -6,7 +6,7 @@ import Icon from 'Components/Icon';
import IconButton from 'Components/Link/IconButton';
import Link from 'Components/Link/Link';
import SpinnerIconButton from 'Components/Link/SpinnerIconButton';
import TagListConnector from 'Components/TagListConnector';
import MovieTagList from 'Components/MovieTagList';
import Popover from 'Components/Tooltip/Popover';
import { icons } from 'Helpers/Props';
import DeleteMovieModal from 'Movie/Delete/DeleteMovieModal';
@@ -231,7 +231,7 @@ function MovieIndexOverview(props: MovieIndexOverviewProps) {
{overviewOptions.showTags ? (
<div className={styles.tags}>
<TagListConnector tags={tags} />
<MovieTagList tags={tags} />
</div>
) : null}
</div>