Skip to content
Snippets Groups Projects
Commit 208493ba authored by MeiMei's avatar MeiMei Committed by syuilo
Browse files

Fix: time tooltip overlaps with others (#3901)

parent 1df8487d
No related branches found
Tags 11.0.0-alpha.3
No related merge requests found
......@@ -76,7 +76,7 @@ export default (opts: Opts = {}) => ({
},
title(): string {
return new Date(this.appearNote.createdAt).toLocaleString();
return '';
},
urls(): string[] {
......
<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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment