aboutsummaryrefslogtreecommitdiff
path: root/src/components/TimeLine.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2023-01-03 10:17:05 +1100
committerTerry Truong <terry06890@gmail.com>2023-01-03 10:17:05 +1100
commitd0b420646ea93ceab055dc52db5e1ec9828824f6 (patch)
treedd29fdc3dc35ef19f86731f8a9e897bb7d01a9e8 /src/components/TimeLine.vue
parent2e6463419e46ed21e8906f6519dc732398250583 (diff)
Temporarily disable sending/showing event images
For testing while waiting for images to download
Diffstat (limited to 'src/components/TimeLine.vue')
-rw-r--r--src/components/TimeLine.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/TimeLine.vue b/src/components/TimeLine.vue
index b9e8197..7dab13b 100644
--- a/src/components/TimeLine.vue
+++ b/src/components/TimeLine.vue
@@ -1166,7 +1166,8 @@ function eventImgStyles(eventId: number){
return {
width: store.eventImgSz + 'px',
height: store.eventImgSz + 'px',
- backgroundImage: `url(${getImagePath(event.imgId)})`,
+ //backgroundImage: `url(${getImagePath(event.imgId)})`,
+ backgroundColor: 'black',
backgroundSize: 'cover',
borderColor: event.ctg == 'discovery' ? store.color.alt2 : store.color.altDark,
borderWidth: '1px',