Skip to content

Commit dab7b4e

Browse files
committed
style(dashboard): add padding to partners table (#4713)
## Problem solved Short description of the bug fixed or feature added <!-- start pr-codex --> --- ## PR-Codex overview The focus of this PR is to rename `EcosystemRow` component to `PartnerRow` and update styling in the partners table. ### Detailed summary - Renamed `EcosystemRow` component to `PartnerRow`. - Updated styling in the partners table for better alignment. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent a491d8b commit dab7b4e

File tree

1 file changed

+3
-3
lines changed
  • apps/dashboard/src/app/(dashboard)/dashboard/connect/ecosystem/[slug]/(active)/components/server

1 file changed

+3
-3
lines changed

apps/dashboard/src/app/(dashboard)/dashboard/connect/ecosystem/[slug]/(active)/components/server/partners-table.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export function PartnersTable({ ecosystem }: { ecosystem: Ecosystem }) {
5353
</TableHeader>
5454
<TableBody>
5555
{[...partners].reverse().map((partner: Partner) => (
56-
<EcosystemRow
56+
<PartnerRow
5757
key={partner.id}
5858
partner={partner}
5959
ecosystem={ecosystem}
@@ -65,7 +65,7 @@ export function PartnersTable({ ecosystem }: { ecosystem: Ecosystem }) {
6565
);
6666
}
6767

68-
function EcosystemRow(props: {
68+
function PartnerRow(props: {
6969
partner: Partner;
7070
ecosystem: Ecosystem;
7171
}) {
@@ -114,7 +114,7 @@ function EcosystemRow(props: {
114114
: "Never prompt"}
115115
</TableCell>
116116
<td className="table-cell py-1 align-middle">
117-
<div className="flex gap-1.5 justify-end">
117+
<div className="flex gap-1.5 pr-1.5 justify-end">
118118
<UpdatePartnerModal
119119
partner={props.partner}
120120
ecosystem={props.ecosystem}

0 commit comments

Comments
 (0)