mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
feat: hoverable card
This commit is contained in:
@@ -15,7 +15,7 @@ export function ConnectorsList({connectors, onDelete}: { connectors: ConnectorEl
|
|||||||
return <>
|
return <>
|
||||||
{connectors.map(connector =>
|
{connectors.map(connector =>
|
||||||
<>
|
<>
|
||||||
<Card title={<Typography.Text
|
<Card hoverable title={<Typography.Text
|
||||||
title={new Date(connector.createdAt).toLocaleString()}>{t`Connector ${connector.provider}`}</Typography.Text>}
|
title={new Date(connector.createdAt).toLocaleString()}>{t`Connector ${connector.provider}`}</Typography.Text>}
|
||||||
size='small'
|
size='small'
|
||||||
style={{width: '100%'}}
|
style={{width: '100%'}}
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ export function WatchlistsList({watchlists, onDelete}: { watchlists: Watchlist[]
|
|||||||
{watchlists.map(watchlist =>
|
{watchlists.map(watchlist =>
|
||||||
<>
|
<>
|
||||||
<Card
|
<Card
|
||||||
|
hoverable
|
||||||
title={<>
|
title={<>
|
||||||
{
|
{
|
||||||
watchlist.connector ?
|
watchlist.connector ?
|
||||||
|
|||||||
Reference in New Issue
Block a user