Skip to content

Commit

Permalink
fixes bug with coordinating rco
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrothwell committed Nov 19, 2024
1 parent 7efdd51 commit 955f305
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/topics/Zoning.vue
Original file line number Diff line number Diff line change
Expand Up @@ -384,9 +384,9 @@ const rcosTableData = computed(() => {
<template #table-row='props'>
<span v-if="props.column.field === 'appealgrounds'">
{{ props.row.appealgrounds }}<br>
</span>
<span v-if="props.row.coordinatingrco">
<b>Coordinating RCO:</b> {{ props.row.coordinatingrco || 'N/A' }}
<span v-if="props.row.coordinatingrco">
<b>Coordinating RCO:</b> {{ props.row.coordinatingrco || 'N/A' }}
</span>
</span>
</template>

Expand Down

0 comments on commit 955f305

Please sign in to comment.