From 7e0bd13048e479a872bc8bea3aaf3dd7c58d9126 Mon Sep 17 00:00:00 2001 From: Greg Date: Sun, 11 May 2025 10:27:48 +0200 Subject: [PATCH] From Json to PostgrSQL V3 save attendance --- static/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/app.js b/static/app.js index 21cd6f9..68bed59 100644 --- a/static/app.js +++ b/static/app.js @@ -12,7 +12,7 @@ function saveData() { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(data) - }); + }).then(() => fetchData()); }