From dedda1bbb982c38d37634a1b2c54e7e40a5b218c Mon Sep 17 00:00:00 2001 From: Nick De Villiers Date: Tue, 16 Jul 2024 10:50:50 +0100 Subject: [PATCH] feat(subnets): add tooltips for reserved IP comments MAASENG-3517 (#5499) - Added tooltips to the "comments" column of the static DHCP leases table --- Fixes [MAASENG-3517](https://warthogs.atlassian.net/browse/MAASENG-3517) --- .../StaticDHCPLease/StaticDHCPTable/StaticDHCPTable.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/subnets/views/SubnetDetails/StaticDHCPLease/StaticDHCPTable/StaticDHCPTable.tsx b/src/app/subnets/views/SubnetDetails/StaticDHCPLease/StaticDHCPTable/StaticDHCPTable.tsx index a63289f48f..253aff0f48 100644 --- a/src/app/subnets/views/SubnetDetails/StaticDHCPLease/StaticDHCPTable/StaticDHCPTable.tsx +++ b/src/app/subnets/views/SubnetDetails/StaticDHCPLease/StaticDHCPTable/StaticDHCPTable.tsx @@ -53,7 +53,9 @@ const generateRows = ( ? getNodeTypeDisplay(reservedIp.node_summary.node_type) : "—"} - {reservedIp.comment || "—"} + + {reservedIp.comment || "—"} +