From 20d559d0a5291a5f8cd6995be8b5aa0cdf17a6d2 Mon Sep 17 00:00:00 2001 From: Mathis Gauthey <46576952+mathisgauthey@users.noreply.github.com> Date: Sat, 6 Jan 2024 23:13:01 +0100 Subject: [PATCH] =?UTF-8?q?Update=20Journal=202024=20=F0=9F=93=94.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Didn't notice beforehand as I imported my journal last year. But this change is required for a 1-5 mood grading. Otherwise, the color heatmap is made using min/max values, which I don't want. --- Journal 2024 📔.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Journal 2024 📔.md b/Journal 2024 📔.md index e6e48c0..54445d4 100644 --- a/Journal 2024 📔.md +++ b/Journal 2024 📔.md @@ -25,8 +25,8 @@ const calendarData = { }, showCurrentDayBorder: true, // (optional) defaults to true defaultEntryIntensity: 4, // (optional) defaults to 4 - //intensityScaleStart: 1, // (optional) defaults to lowest value passed to entries.intensity - //intensityScaleEnd: 5, // (optional) defaults to highest value passed to entries.intensity + intensityScaleStart: 1, // (optional) defaults to lowest value passed to entries.intensity + intensityScaleEnd: 5, // (optional) defaults to highest value passed to entries.intensity entries: [], // (required) populated in the DataviewJS loop below }