From 7348360fead15f85f368d4d4d248e41aa4a2f4f2 Mon Sep 17 00:00:00 2001 From: Terry Truong Date: Sun, 22 Jan 2023 10:40:54 +1100 Subject: Add help content Change 'and onwards' symbol in timeline position label Set scrollbar color --- src/components/TimeLine.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/components/TimeLine.vue') diff --git a/src/components/TimeLine.vue b/src/components/TimeLine.vue index 26f0c8d..d935415 100644 --- a/src/components/TimeLine.vue +++ b/src/components/TimeLine.vue @@ -866,19 +866,20 @@ const tickToCount = computed((): Map => { // ========== For timeline position label ========== const timelinePosStr = computed((): string => { + const moreSym = ' \u27A4'; const date1 = startIsFirstVisible.value ? startDate.value : firstDate.value; const date2 = endIsLastVisible.value ? endDate.value : lastDate.value; if (minorScale.value == DAY_SCALE){ const multiMonth = date1.month != date2.month; - return `${dateToYearStr(date1)} ${MONTH_NAMES[date1.month - 1]}${multiMonth ? ' >' : ''}`; + return `${dateToYearStr(date1)} ${MONTH_NAMES[date1.month - 1]}${multiMonth ? moreSym : ''}`; } else if (minorScale.value == MONTH_SCALE){ const multiYear = date1.year != date2.year; - return `${dateToYearStr(date1)}${multiYear ? ' >' : ''}`; + return `${dateToYearStr(date1)}${multiYear ? moreSym : ''}`; } else { if (date1.year > 0){ return `${dateToYearStr(date1)} - ${dateToYearStr(date2)}`; } else { - return `${dateToYearStr(date1)} >`; + return dateToYearStr(date1) + moreSym; } } }); -- cgit v1.2.3