-
Notifications
You must be signed in to change notification settings - Fork 278
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show absolute dates when printing #3375
Conversation
@@ -23,8 +23,9 @@ | |||
<template> | |||
<div v-if="card" class="duedate"> | |||
<transition name="zoom"> | |||
<div v-if="card.duedate" :class="dueIcon"> | |||
<span>{{ relativeDate }}</span> | |||
<div v-if="card.duedate" :class="dueIcon" :title="absoluteDate"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have added the title
attribute. There was a dueDateTooltip
computed property before. But it wasn't be used. This now shows the absolute date when hovering.
}, | ||
} | ||
</script> | ||
|
||
<style lang="scss" coped> | ||
<style lang="scss" scoped> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo fixed
13cf7ed
to
986f4ff
Compare
Just an idea, but to minimize DOM content and javascript logic, ine could utilize |
986f4ff
to
d9ae0fc
Compare
relates to #3250 Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
d9ae0fc
to
48c2869
Compare
Great idea. I have implemented it this way 👍 |
Summary
Show absolute dates when printing: