From ba90595d7b11bdc50fcbba7eaafbc5ef6b85503f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gangloff?= Date: Wed, 18 Dec 2024 19:51:08 +0100 Subject: [PATCH] chore: change some icons --- assets/components/tracking/watchlist/WatchlistCard.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/components/tracking/watchlist/WatchlistCard.tsx b/assets/components/tracking/watchlist/WatchlistCard.tsx index 61cc9eb..ea55f40 100644 --- a/assets/components/tracking/watchlist/WatchlistCard.tsx +++ b/assets/components/tracking/watchlist/WatchlistCard.tsx @@ -1,5 +1,5 @@ import {Card, Divider, Space, Table, Tag, Tooltip} from "antd"; -import {ClockCircleOutlined, DeleteOutlined, DisconnectOutlined, LinkOutlined} from "@ant-design/icons"; +import {DeleteOutlined, DisconnectOutlined, ExclamationCircleOutlined, LinkOutlined} from "@ant-design/icons"; import {t} from "ttag"; import {ViewDiagramWatchlistButton} from "./diagram/ViewDiagramWatchlistButton"; import {UpdateWatchlistButton} from "./UpdateWatchlistButton"; @@ -82,11 +82,11 @@ export function WatchlistCard({watchlist, onUpdateWatchlist, connectors, onDelet color={ d.deleted ? 'red' : // If the domain is deleted d.status.includes('redemption period') ? 'yellow' : - d.status.includes('pending delete') ? 'orange' : 'default' + d.status.includes('pending delete') ? 'volcano' : 'default' } icon={ d.deleted ? : // If the domain is deleted - d.status.includes('redemption period') ? : + d.status.includes('redemption period') ? : d.status.includes('pending delete') ? : null }>{punycode.toUnicode(d.ldhName)}), events: watchlist.triggers?.filter(t => t.action === 'email')