diff options
| author | Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com> | 2019-08-18 12:42:58 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-08-18 12:42:58 +0900 |
| commit | 59493a0cd99f269c9896c49b78e8b3913527c9da (patch) | |
| tree | b40f8cbeaa206766fdf6f5d52e15e9812ae46e8b /src/client/app/common/views/components/trends.chart.vue | |
| parent | リモートユーザー向けのNoteUnreadsレコードは作成しないよ... (diff) | |
| download | misskey-59493a0cd99f269c9896c49b78e8b3913527c9da.tar.gz misskey-59493a0cd99f269c9896c49b78e8b3913527c9da.tar.bz2 misskey-59493a0cd99f269c9896c49b78e8b3913527c9da.zip | |
uuid() と lint (#5288)
* Import only v4 uuid, uuid() without version is deprecated
* Add Missing semicolon
Diffstat (limited to 'src/client/app/common/views/components/trends.chart.vue')
| -rw-r--r-- | src/client/app/common/views/components/trends.chart.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/views/components/trends.chart.vue b/src/client/app/common/views/components/trends.chart.vue index 723a3947f8..5c4f74b6b4 100644 --- a/src/client/app/common/views/components/trends.chart.vue +++ b/src/client/app/common/views/components/trends.chart.vue @@ -31,7 +31,7 @@ <script lang="ts"> import Vue from 'vue'; -import * as uuid from 'uuid'; +import { v4 as uuid } from 'uuid'; export default Vue.extend({ props: { |