Skip to content

Commit

Permalink
Also round in table
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van den Bout committed Nov 16, 2022
1 parent 14924e6 commit a7b064b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ const exportToCsv = () => {
<tbody class="table-group-divider">
<tr v-for="date in travelDates" :key="date.toString()">
<td>{{ date }}</td>
<td class="text-end">{{ tripDistance }}</td>
<td class="text-end">{{ round(tripDistance) }}</td>
<td class="text-end">
{{ round(tripDistance * allowance) }}
</td>
Expand Down

0 comments on commit a7b064b

Please sign in to comment.