diff options
| author | Terry Truong <terry06890@gmail.com> | 2023-01-24 19:19:09 +1100 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2023-01-24 19:33:27 +1100 |
| commit | 0f74c8bad0b176f808cdf53911f70d5d791823fe (patch) | |
| tree | 7a26927e76192a0b7f4a83e5f596b5666ab352cd /src/App.vue | |
| parent | f6fb429772c02da976f4173907fdaa9ee97a7c99 (diff) | |
Adjust limits and timeouts
Increase MAX_REQ_EVENTS in chrona.py. Without this, a large-screened
client might request with a limit of 700 events, more than the
previous server limit of 500, causing the client to display nothing.
Reduce onEventDisplay() throttling timeout in App.vue, for faster
user responsiveness.
Diffstat (limited to 'src/App.vue')
| -rw-r--r-- | src/App.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue index 4a8c3d9..186bf40 100644 --- a/src/App.vue +++ b/src/App.vue @@ -370,7 +370,7 @@ function onEventDisplay( timelineTimeouts.set(timelineId, window.setTimeout(async () => { timelineTimeouts.delete(timelineId); handleOnEventDisplay(timelineId, eventIds, firstDate, lastDate, scaleIdx); - }, 200)); + }, 100)); } // ========== For info modal ========== |
