Add Library filter to Stats
All checks were successful
/ release (push) Successful in 1m7s

This commit is contained in:
speatzle 2024-10-08 11:30:04 +02:00
parent 9d2519c085
commit 7d037be106
4 changed files with 58 additions and 21 deletions

View file

@ -0,0 +1,7 @@
function setLibrary(library_id) {
if (library_id === "") {
} else {
window.location.href = "/stats";
}
window.location.href = "/stats/" + library_id;
}