We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fd826c commit 7181ce6Copy full SHA for 7181ce6
app/templates/index.html
@@ -1912,6 +1912,12 @@ <h2>{{ t.export_title }}</h2>
1912
1913
// Re-init sortable tables (event listeners lost on innerHTML replace)
1914
initSortableTables();
1915
+
1916
+ // Refresh event badge count
1917
+ fetch('/api/events/count')
1918
+ .then(function(r) { return r.json(); })
1919
+ .then(function(d) { updateEventBadge(d.count || 0); })
1920
+ .catch(function() {});
1921
})
1922
.catch(function(err) {
1923
console.warn('Auto-refresh failed:', err);
0 commit comments