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/app/common/scripts | |
| parent | Update README.md [AUTOGEN] (#3900) (diff) | |
| download | sharkey-208493ba1375fcc0f7b85b08650940b280d921eb.tar.gz sharkey-208493ba1375fcc0f7b85b08650940b280d921eb.tar.bz2 sharkey-208493ba1375fcc0f7b85b08650940b280d921eb.zip | |
Fix: time tooltip overlaps with others (#3901)
Diffstat (limited to 'src/client/app/common/scripts')
| -rw-r--r-- | src/client/app/common/scripts/note-mixin.ts | 2 |
1 files changed, 1 insertions, 1 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[] { |