We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 93ca7bb + ff3ae7c commit e376808Copy full SHA for e376808
1 file changed
web/app.js
@@ -354,6 +354,16 @@ function appendActivityBalanceSnapshot(schedule) {
354
next.splice(0, next.length - BALANCE_HISTORY_LIMIT);
355
}
356
visualsState.balanceHistory = next;
357
+ if (
358
+ visualsState.urchin &&
359
+ typeof visualsState.urchin.appendBalanceHistoryEntry === 'function'
360
+ ) {
361
+ try {
362
+ visualsState.urchin.appendBalanceHistoryEntry(entry);
363
+ } catch (error) {
364
+ console.warn('[visuals] failed to append balance history entry:', error);
365
+ }
366
367
applyBalanceHistoryToUrchin();
368
369
0 commit comments