From 81b6b19944dfe965bf2b999617d98016bb9d9fef Mon Sep 17 00:00:00 2001 From: les Date: Fri, 7 May 2021 23:02:19 +0200 Subject: [PATCH] fix multidate calendar representation --- assets/helper.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/helper.js b/assets/helper.js index 11640c34..a192818f 100644 --- a/assets/helper.js +++ b/assets/helper.js @@ -10,7 +10,7 @@ export function attributesFromEvents (_events, _tags) { const now = dayjs().unix() function getColor (event) { - const color = { class: 'vc-rounded-full', color: 'blue', fillMode: 'normal' } + const color = { class: 'vc-rounded-full', color: 'blue' } const tag = get(event, 'tags[0]') if (event.start_datetime < now) { color.class += ' vc-past' } if (!tag) { return color } @@ -35,7 +35,7 @@ export function attributesFromEvents (_events, _tags) { .filter(e => e.multidate) .map(e => ({ key: e.id, - highlight: getColor(e), + highlight: { start: { ...getColor(e), fillMode: 'solid' }, end: { ...getColor(e), fillMode: 'solid' } }, dates: { start: new Date(e.start_datetime * 1000), end: new Date(e.end_datetime * 1000) } })))