File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
app/pages/project/floating-ips Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ import { InstanceLinkCell } from '~/table/cells/InstanceLinkCell'
3232import { useColsWithActions , type MenuAction } from '~/table/columns/action-col'
3333import { Columns } from '~/table/columns/common'
3434import { PAGE_SIZE , useQueryTable } from '~/table/QueryTable'
35- import { Badge } from '~/ui/lib/Badge'
3635import { CreateLink } from '~/ui/lib/CreateButton'
3736import { EmptyMessage } from '~/ui/lib/EmptyMessage'
3837import { Listbox } from '~/ui/lib/Listbox'
@@ -81,13 +80,12 @@ FloatingIpsPage.loader = async ({ params }: LoaderFunctionArgs) => {
8180const IpPoolCell = ( { ipPoolId } : { ipPoolId : string } ) => {
8281 const pool = useApiQuery ( 'projectIpPoolView' , { path : { pool : ipPoolId } } ) . data
8382 if ( ! pool ) return < EmptyCell />
84- const badge = < Badge color = "neutral" > { pool . name } </ Badge >
8583 return pool . description ? (
8684 < Tooltip content = { pool . description } placement = "right" >
87- < span > { badge } </ span >
85+ < span > { pool . name } </ span >
8886 </ Tooltip >
8987 ) : (
90- badge
88+ < > { pool . name } </ >
9189 )
9290}
9391
You can’t perform that action at this time.
0 commit comments