Browse Source

Fix lint error on CommentList

pull/1230/head
Hironsan 4 years ago
parent
commit
8c09fa5705
1 changed files with 2 additions and 2 deletions
  1. 4
      frontend/components/containers/comments/CommentList.vue

4
frontend/components/containers/comments/CommentList.vue

@ -18,10 +18,10 @@
item-key="id"
show-select
>
<template v-slot:item.created_at="{ item }">
<template v-slot:[`item.created_at`]="{ item }">
<span>{{ item.created_at | dateParse('YYYY-MM-DDTHH:mm:ss') | dateFormat('YYYY-MM-DD HH:mm') }}</span>
</template>
<template v-slot:item.document_text="{ item }">
<template v-slot:[`item.document_text`]="{ item }">
{{ item.document_text | truncate(200) }}
</template>
<template v-slot:top>

Loading…
Cancel
Save