From 49dfea21970ebbfbeb70a4e6fc475a7cab588c91 Mon Sep 17 00:00:00 2001 From: Charlie Park Date: Fri, 11 Oct 2024 00:02:36 -0400 Subject: [PATCH] Make IP on Floating IPs page copyable --- app/pages/project/floating-ips/FloatingIpsPage.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/pages/project/floating-ips/FloatingIpsPage.tsx b/app/pages/project/floating-ips/FloatingIpsPage.tsx index fc246cd18..08d035c03 100644 --- a/app/pages/project/floating-ips/FloatingIpsPage.tsx +++ b/app/pages/project/floating-ips/FloatingIpsPage.tsx @@ -32,6 +32,7 @@ import { IpPoolCell } from '~/table/cells/IpPoolCell' import { useColsWithActions, type MenuAction } from '~/table/columns/action-col' import { Columns } from '~/table/columns/common' import { PAGE_SIZE, useQueryTable } from '~/table/QueryTable' +import { CopyableIp } from '~/ui/lib/CopyableIp' import { CreateLink } from '~/ui/lib/CreateButton' import { EmptyMessage } from '~/ui/lib/EmptyMessage' import { Message } from '~/ui/lib/Message' @@ -85,6 +86,7 @@ const staticCols = [ colHelper.accessor('description', Columns.description), colHelper.accessor('ip', { header: 'IP address', + cell: (info) => , }), colHelper.accessor('ipPoolId', { header: 'IP pool',