Skip to content

Commit

Permalink
Merge pull request #347 from sancsoft/343-project-details-client-name
Browse files Browse the repository at this point in the history
client name
  • Loading branch information
rmaffitsancsoft committed Aug 20, 2024
1 parent c8df64e commit ccf3bc8
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@ <h1 class="font-rajdhani font-semibold text-3xl">
Email: {{ project.billingEmail || "None" }}
</div>
<div class="text-gray-50">
Official Name:
<a
[routerLink]="['/clients', project.clientId]"
class="underline"
>{{ project.officialName || project.name }}</a
>
Client Name:
@if (projectDetailService.client$ | async; as client) {
<a
[routerLink]="['/clients', project.clientId]"
class="underline"
>{{ client.name }}</a
>
}
</div>
</div>

Expand Down

0 comments on commit ccf3bc8

Please sign in to comment.