File tree Expand file tree Collapse file tree 2 files changed +23
-4
lines changed
Expand file tree Collapse file tree 2 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 8282 v-safe-html =" n.description"
8383 class =" notification-description"
8484 />
85- <v-list-item-subtitle class =" notification-timestamp" >
86- {{ $filters.formatRelativeTimeToNow(n.timestamp * 1000) }}
87- </v-list-item-subtitle >
85+ <v-tooltip bottom >
86+ <template #activator =" { on , attrs } " >
87+ <v-list-item-subtitle
88+ v-bind =" attrs"
89+ class =" notification-timestamp"
90+ v-on =" on"
91+ >
92+ {{ $filters.formatRelativeTimeToNow(n.timestamp * 1000) }}
93+ </v-list-item-subtitle >
94+ </template >
95+ <span >{{ $filters.formatDateTime(n.timestamp * 1000) }}</span >
96+ </v-tooltip >
8897 <v-list-item-subtitle v-if =" n.to" >
8998 <app-btn
9099 v-if =" !n.to.startsWith('http')"
Original file line number Diff line number Diff line change 5151 >
5252 <strong >{{ commit.author }}</strong >
5353 </a >
54- {{ $t('app.version.label.committed') }} {{ $filters.formatRelativeTimeToNow(+commit.date * 1000) }}
54+ <v-tooltip bottom >
55+ <template #activator =" { on , attrs } " >
56+ <span
57+ v-bind =" attrs"
58+ v-on =" on"
59+ >
60+ {{ $t('app.version.label.committed') }} {{ $filters.formatRelativeTimeToNow(+commit.date * 1000) }}
61+ </span >
62+ </template >
63+ <span >{{ $filters.formatDateTime(+commit.date * 1000) }}</span >
64+ </v-tooltip >
5565 </div >
5666 </div >
5767 <div >
You can’t perform that action at this time.
0 commit comments