diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2019-01-17 06:40:11 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-01-17 06:40:11 +0900 |
| commit | 208493ba1375fcc0f7b85b08650940b280d921eb (patch) | |
| tree | 085e9367ea80a7afb4465be8bd076c186e0ca54a /src/client | |
| parent | Update README.md [AUTOGEN] (#3900) (diff) | |
| download | misskey-208493ba1375fcc0f7b85b08650940b280d921eb.tar.gz misskey-208493ba1375fcc0f7b85b08650940b280d921eb.tar.bz2 misskey-208493ba1375fcc0f7b85b08650940b280d921eb.zip | |
Fix: time tooltip overlaps with others (#3901)
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/common/scripts/note-mixin.ts | 2 | ||||
| -rw-r--r-- | src/client/app/common/views/components/time.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/common/scripts/note-mixin.ts b/src/client/app/common/scripts/note-mixin.ts index 0dc18a763b..047e2ae55e 100644 --- a/src/client/app/common/scripts/note-mixin.ts +++ b/src/client/app/common/scripts/note-mixin.ts @@ -76,7 +76,7 @@ export default (opts: Opts = {}) => ({ }, title(): string { - return new Date(this.appearNote.createdAt).toLocaleString(); + return ''; }, urls(): string[] { diff --git a/src/client/app/common/views/components/time.vue b/src/client/app/common/views/components/time.vue index d064b7820e..8cfcc4cb4f 100644 --- a/src/client/app/common/views/components/time.vue +++ b/src/client/app/common/views/components/time.vue @@ -1,5 +1,5 @@ <template> -<time class="mk-time"> +<time class="mk-time" :title="absolute"> <span v-if=" mode == 'relative' ">{{ relative }}</span> <span v-if=" mode == 'absolute' ">{{ absolute }}</span> <span v-if=" mode == 'detail' ">{{ absolute }} ({{ relative }})</span> |