Skip to content

Commit 0f4efc2

Browse files
committed
Fix timestamp
1 parent 1e89479 commit 0f4efc2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web/pages/heartbeats/_id.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@
5252
:items-per-page="100"
5353
class="heartbeat--table"
5454
>
55-
<template #item.interval="{ item }">
55+
<template #[`item.interval`]="{ item }">
5656
{{ formatDuration(item.interval) }}
5757
</template>
58-
<template #item.owner="{ item }">
58+
<template #[`item.owner`]="{ item }">
5959
{{ item.owner | phoneNumber }}
6060
</template>
61-
<template #item.timestamp="{ item }">
61+
<template #[`item.timestamp`]="{ item }">
6262
{{ item.timestamp | timestamp }}
6363
</template>
6464
</v-data-table>

0 commit comments

Comments
 (0)