Skip to content

Commit

Permalink
fixed bug PADS-220
Browse files Browse the repository at this point in the history
  • Loading branch information
qhanson55 committed Jul 17, 2024
1 parent 1f376dd commit d487adb
Showing 1 changed file with 20 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function isFinanciallySupported(data: Submission) {
frozen
>
<template #body="{ data }">
<div :data-activityId="data.activityId">
<div :data-projectName="data.projectName">
<router-link
:to="{
name: RouteName.HOUSING_SUBMISSION,
Expand All @@ -179,7 +179,25 @@ function isFinanciallySupported(data: Submission) {
:sortable="true"
style="min-width: 125px"
frozen
/>
>
<template #body="{ data }">
<div :data-activityId="data.activityId">
<div v-if="data.projectName">
{{ data.activityId }}
</div>
<div v-else>
<router-link
:to="{
name: RouteName.HOUSING_SUBMISSION,
query: { activityId: data.activityId, submissionId: data.submissionId }
}"
>
{{ data.activityId }}
</router-link>
</div>
</div>
</template>
</Column>
<Column
field="contactFirstName"
header="First name"
Expand Down

0 comments on commit d487adb

Please sign in to comment.