From c6fe3cea0c51ab3b8916344b1132817f4f245cfb Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Wed, 30 Mar 2022 20:39:24 -0700 Subject: [PATCH] TorrentList: fix "a wild 0 appears" --- client/src/javascript/components/torrent-list/TorrentList.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/javascript/components/torrent-list/TorrentList.tsx b/client/src/javascript/components/torrent-list/TorrentList.tsx index 0229915c..1bfd0b11 100644 --- a/client/src/javascript/components/torrent-list/TorrentList.tsx +++ b/client/src/javascript/components/torrent-list/TorrentList.tsx @@ -87,7 +87,7 @@ const TorrentList: FC = observer(() => {
- {TorrentFilterStore.isFilterActive && ( + {TorrentFilterStore.isFilterActive ? (
- )} + ) : null} ); } else {