This commit is contained in:
2024-04-02 17:58:30 +02:00
parent 4260ca0e92
commit 56ec2cfb15
7 changed files with 34 additions and 15 deletions

7
static/dropdown.js Normal file
View File

@ -0,0 +1,7 @@
document.addEventListener("DOMContentLoaded", function(event) {
const dropdown = document.getElementById("dropdown");
dropdown.addEventListener("change", function() {
dropdown.submit();
});
});