Skip to content

Commit

Permalink
added width to phone column
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunlumbcgov committed Nov 16, 2023
1 parent 48bb4b7 commit 0c39543
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions frontend/src/views/DistrictView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -320,11 +320,16 @@ onMounted(async () => {
</template>

<template v-slot:item.phoneNumber="{ item }">
{{ formatPhoneNumber(item.phoneNumber) }}
<div style="min-width: 125px">
<!-- Adjust the min-width value as needed -->
{{ formatPhoneNumber(item.phoneNumber) }}
</div>
</template>

<template v-slot:item.faxNumber="{ item }">
{{ formatPhoneNumber(item.faxNumber) }}
<div style="min-width: 125px">
{{ formatPhoneNumber(item.faxNumber) }}
</div>
</template>
</v-data-table>
</v-window-item>
Expand Down

0 comments on commit 0c39543

Please sign in to comment.