summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client/app/common/scripts/note-mixin.ts2
-rw-r--r--src/client/app/common/views/components/time.vue2
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>