Skip to content

Commit

Permalink
Merge pull request #42 from CityOfPhiladelphia/feature/add-coordinati…
Browse files Browse the repository at this point in the history
…ng-rco

Feature/add coordinating rco
  • Loading branch information
ajrothwell authored Nov 19, 2024
2 parents 2104598 + 3171780 commit 245a21c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/topics/Zoning.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const appealsTableData = computed(() => {
html: true,
},
{
label: 'Description',
label: 'Description & Coordinating RCO',
field: 'appealgrounds',
},
{
Expand Down Expand Up @@ -381,6 +381,13 @@ const rcosTableData = computed(() => {
>
</custom-pagination-labels>
</template>
<template #table-row='props'>
<span v-if="props.column.field === 'appealgrounds'">
{{ props.row.appealgrounds }}<br>
<b>Coordinating RCO:</b> {{ props.row.coordinatingrco || 'N/A' }}
</span>
</template>

</vue-good-table>
</div>
</div>
Expand Down

0 comments on commit 245a21c

Please sign in to comment.