diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-11-18 23:32:43 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-11-18 23:32:43 +0900 |
| commit | 73b5c129278bbcc19a95f2c599ac76f68f023c3a (patch) | |
| tree | 62c4198ab091c14214eb3e552352a2ef41ee9055 /packages/client/src/components/date-separated-list.vue | |
| parent | Update CHANGELOG.md (diff) | |
| download | misskey-73b5c129278bbcc19a95f2c599ac76f68f023c3a.tar.gz misskey-73b5c129278bbcc19a95f2c599ac76f68f023c3a.tar.bz2 misskey-73b5c129278bbcc19a95f2c599ac76f68f023c3a.zip | |
introduce lint for client
Resolve #7998
Diffstat (limited to 'packages/client/src/components/date-separated-list.vue')
| -rw-r--r-- | packages/client/src/components/date-separated-list.vue | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/packages/client/src/components/date-separated-list.vue b/packages/client/src/components/date-separated-list.vue index 1aea9fd353..aa84c6f60d 100644 --- a/packages/client/src/components/date-separated-list.vue +++ b/packages/client/src/components/date-separated-list.vue @@ -31,10 +31,6 @@ export default defineComponent({ }, methods: { - focus() { - this.$slots.default[0].elm.focus(); - }, - getDateText(time: string) { const date = new Date(time).getDate(); const month = new Date(time).getMonth() + 1; |