Skip to content

Commit cde4d22

Browse files
committed
turn off rowHeight: large for ip pools page
1 parent 56eb284 commit cde4d22

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/components/IpPoolUtilization.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export function IpUtilCell(util: IpPoolUtilization) {
3232
// a pool already exists with IPv6 ranges, so we might as well show that. also
3333
// this is nice for e2e testing the utilization logic
3434
return (
35-
<div className="space-y-1">
35+
<div className="space-y-0.5">
3636
<div>
3737
<Badge color="neutral" className="mr-2 !normal-case">
3838
v4

app/pages/system/networking/IpPoolsPage.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ export default function IpPoolsPage() {
112112
const { table, query } = useQueryTable({
113113
query: ipPoolList(),
114114
columns,
115-
rowHeight: 'large',
115+
// turn this back on if we expect to see IPv6 ranges regularly
116+
// rowHeight: 'large',
116117
emptyState: <EmptyState />,
117118
})
118119
const { data: pools } = query

0 commit comments

Comments
 (0)