aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-12-29 22:56:11 +1100
committerTerry Truong <terry06890@gmail.com>2022-12-29 23:37:37 +1100
commit0d27e899cf580a90784a7ac929a027c456ef30b0 (patch)
treef6f079db1a56bf52885bbb37a7f2a2d9981fc31b /src/App.vue
parenta3c5a73fae39de296cd05bde1a6853e20f84305a (diff)
Adjust event-count-indicator styling
Use solid color, and skip transitions on screen size change
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/App.vue b/src/App.vue
index 31be46d..3de3ac2 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -200,6 +200,7 @@ async function onEventDisplay(
// Check memory limit
displayedEvents.set(timelineId, eventIds);
if (eventTree.value.size > EXCESS_EVENTS_THRESHOLD){
+ console.log(`INFO: Calling reduceEvents() upon reaching ${eventTree.value.size} events`);
reduceEvents();
queriedRanges.forEach((t: DateRangeTree) => t.clear());
}