betsy-button

Family health button
git clone https://git.woozle.org/neale/betsy-button.git

commit
feefbf4
parent
65888dc
author
Neale Pickett
date
2025-07-10 18:30:59 -0600 MDT
stop caching logs in status.html
1 files changed,  +1, -1
M web/status.html
+1, -1
1@@ -179,7 +179,7 @@
2                         }
3                     })
4 
5-                fetch(`log/${id}.log`)
6+                fetch(`log/${id}.log`, {cache: "no-store"})
7                     .then(resp => resp.text())
8                     .then(txt => {
9                         let log = document.querySelector(".log")