Skip to content

Commit

Permalink
fix: network discovery date truncation MAASENG-2991 (#5403)
Browse files Browse the repository at this point in the history
  • Loading branch information
petermakowski committed Apr 15, 2024
1 parent 69b0cfc commit 6e5cd2f
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,7 @@ const generateRows = (
content: discovery.observer_hostname,
},
{
content: (
<div className="u-truncate">
{formatUtcDatetime(discovery.last_seen)}
</div>
),
content: <div>{formatUtcDatetime(discovery.last_seen)}</div>,
},
{
content: (
Expand Down

0 comments on commit 6e5cd2f

Please sign in to comment.