Skip to content

Commit

Permalink
Change Name to Data Owner Name (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
Filip-L authored Feb 26, 2025
1 parent 4e248a4 commit 198db9e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/cards/AppInfoCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ const AppInfoCard: React.FC<ComponentProps> = ({

<CardContent className="grid text-sm mb-4">
{[
['Name', application.Client.Name],
['Data Owner Name', application.Client.Name],
['Region', application.Client.Region],
['Industry', application.Client.Industry],
['Website', application.Client.Website],
Expand All @@ -991,9 +991,9 @@ const AppInfoCard: React.FC<ComponentProps> = ({
return (
<div
key={label}
className={`flex items-center p-2 justify-between ${rowStyles}`}
className={`flex items-center p-2 justify-between gap-2 ${rowStyles}`}
>
<p className="text-gray-600">{label}</p>
<p className="text-gray-600 shrink-0">{label}</p>
{label === 'Address' ? (
<a
href={`https://filfox.info/en/address/${value}`}
Expand Down

0 comments on commit 198db9e

Please sign in to comment.