Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/components/IpPoolUtilization.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function IpUtilCell(util: IpPoolUtilization) {
// a pool already exists with IPv6 ranges, so we might as well show that. also
// this is nice for e2e testing the utilization logic
return (
<div className="space-y-1">
<div className="flex gap-4">
<div>
<Badge color="neutral" className="mr-2 !normal-case">
v4
Expand Down
2 changes: 2 additions & 0 deletions app/pages/system/networking/IpPoolsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ export default function IpPoolsPage() {
const { table, query } = useQueryTable({
query: ipPoolList(),
columns,
// turn this back on if we expect to see IPv6 ranges regularly
// rowHeight: 'large',
emptyState: <EmptyState />,
})
const { data: pools } = query
Expand Down
2 changes: 1 addition & 1 deletion app/ui/lib/DateTime.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import { toLocaleDateString, toLocaleTimeString } from '~/util/date'

export const DateTime = ({ date, locale }: { date: Date; locale?: string }) => (
<time dateTime={date.toISOString()} className="flex flex-wrap gap-x-1">
<time dateTime={date.toISOString()} className="flex gap-x-1">
<span>{toLocaleDateString(date, locale)}</span>
<span className="text-tertiary">{toLocaleTimeString(date, locale)}</span>
</time>
Expand Down
4 changes: 2 additions & 2 deletions app/ui/lib/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ Table.Cell = ({ height = 'small', className, children, ...props }: TableCellProp
>
<div
className={cn(
'relative -my-[1px] -mr-[2px] flex items-center border-b border-l p-3 border-secondary',
{ 'h-12': height === 'small', 'h-16': height === 'large' }
'relative -my-[1px] -mr-[2px] flex items-center border-b border-l px-3 py-2 border-secondary',
{ 'h-11': height === 'small', 'h-14': height === 'large' }
)}
>
{children}
Expand Down
Loading