Skip to content

Commit aea9402

Browse files
committed
fix: webhook table alignment
1 parent a0f1323 commit aea9402

File tree

1 file changed

+6
-4
lines changed
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/connect/universal-bridge/webhooks/components

1 file changed

+6
-4
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/connect/universal-bridge/webhooks/components/webhooks.client.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ export function PayWebhooksPage(props: PayWebhooksPageProps) {
111111
<TableHead>Label</TableHead>
112112
<TableHead>Url</TableHead>
113113
<TableHead>Created</TableHead>
114-
<TableHead>Version</TableHead>
115-
<TableHead>Delete</TableHead>
114+
<TableHead className="text-center">Version</TableHead>
115+
<TableHead className="text-center">Delete</TableHead>
116116
</TableRow>
117117
</TableHeader>
118118
<TableBody>
@@ -123,8 +123,10 @@ export function PayWebhooksPage(props: PayWebhooksPageProps) {
123123
<TableCell>
124124
{formatDistanceToNow(webhook.createdAt, { addSuffix: true })}
125125
</TableCell>
126-
<TableCell>{webhook.version || "v1"}</TableCell>
127-
<TableCell className="text-right">
126+
<TableCell className="text-center">
127+
{webhook.version || "1"}
128+
</TableCell>
129+
<TableCell className="text-center">
128130
<DeleteWebhookButton
129131
clientId={props.clientId}
130132
teamId={props.teamId}

0 commit comments

Comments
 (0)