From 21b5e5ee7bb933fa8235430aa63382b70dbe3d1b Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Sat, 14 Jan 2023 11:26:10 +1100 Subject: Improve date display in info modal Make desc field of EventInfo optional Don't require desc in type=info result Fix image not showing in info modal --- src/components/TimeLine.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/components/TimeLine.vue') diff --git a/src/components/TimeLine.vue b/src/components/TimeLine.vue index 6d0f632..8aeb883 100644 --- a/src/components/TimeLine.vue +++ b/src/components/TimeLine.vue @@ -43,7 +43,7 @@ x="0" y="0" :text-anchor="vert ? 'start' : 'middle'" dominant-baseline="middle" :fill="store.color.textDark" :style="tickLabelStyles(tick)" class="text-sm animate-fadein cursor-default select-none"> - {{tick.date.toDisplayString()}} + {{tick.date.toTickString()}} @@ -1289,7 +1289,7 @@ function eventImgStyles(eventId: number){ width: store.eventImgSz + 'px', height: store.eventImgSz + 'px', backgroundImage: `url(${getImagePath(event.imgId)})`, - backgroundColor: 'black', + backgroundColor: store.color.bgDark, backgroundSize: 'cover', borderColor: color, borderWidth: '1px', -- cgit v1.2.3