Skip to content

Commit

Permalink
feat(subnets): add tooltips for reserved IP comments MAASENG-3517 (#5499
Browse files Browse the repository at this point in the history
)

- Added tooltips to the "comments" column of the static DHCP leases table

---

Fixes [MAASENG-3517](https://warthogs.atlassian.net/browse/MAASENG-3517)
  • Loading branch information
ndv99 authored Jul 16, 2024
1 parent 9215ed6 commit dedda1b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ const generateRows = (
? getNodeTypeDisplay(reservedIp.node_summary.node_type)
: "—"}
</td>
<td>{reservedIp.comment || "—"}</td>
<td className="u-no-wrap" title={reservedIp.comment}>
{reservedIp.comment || "—"}
</td>
<td>
<TableActions
onDelete={() =>
Expand Down

0 comments on commit dedda1b

Please sign in to comment.