Compare commits

...

2 Commits

Author SHA1 Message Date
StephanRichter 3d1850b2d2 Merge branch 'accounting' into dev
Build Docker Image / Docker-Build (push) Successful in 2m32s
Build Docker Image / Clean-Registry (push) Successful in 6s
2026-04-23 20:17:25 +02:00
StephanRichter 509accae3a minor improvement: automatically scrolling to bottom
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
2026-04-23 20:17:17 +02:00
@@ -27,6 +27,7 @@
if (!transaction.destination.id) sums[0] += transaction.amount;
if (!transaction.source.id) sums[0] -= transaction.amount;
}
window.setTimeout(scrollToBottom,100);
return sums;
}
@@ -65,6 +66,10 @@
load();
}
function scrollToBottom(){
window.scrollTo(0, document.body.scrollHeight);
}
onMount(load);
</script>