mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 09:57:29 -07:00
Fix: time tooltip overlaps with others (#3901)
This commit is contained in:
parent
b024b7a62d
commit
2607fc56d6
2 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ export default (opts: Opts = {}) => ({
|
|||
},
|
||||
|
||||
title(): string {
|
||||
return new Date(this.appearNote.createdAt).toLocaleString();
|
||||
return '';
|
||||
},
|
||||
|
||||
urls(): string[] {
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue