Skip to content

Commit

Permalink
feat(fe:FSADT1-952): Make Client Number clickable (#1271)
Browse files Browse the repository at this point in the history
  • Loading branch information
mamartinezmejia authored Oct 24, 2024
1 parent 3b1f58a commit 18e7ef9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion frontend/src/pages/SubmissionReviewPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,12 @@ const isProcessing = computed(() => {
</read-only-component>

<read-only-component label="Client number" v-if="data.business.clientNumber">
<span class="body-compact-01">{{ data.business.clientNumber }}</span>
<span class="body-compact-01">
<a target="_blank"
:href="'https://' + greenDomain + '/int/client/client02MaintenanceAction.do?bean.clientNumber=' + data.business.clientNumber">
{{ data.business.clientNumber }}
</a>
</span>
</read-only-component>

<read-only-component label="Client type">
Expand Down

0 comments on commit 18e7ef9

Please sign in to comment.