Add missing semicolons.

This commit is contained in:
Antonin Décimo
2020-09-14 15:48:17 +02:00
committed by Juliusz Chroboczek
parent c6d065aa20
commit 5ad4df5a45
2 changed files with 24 additions and 25 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ document.getElementById('groupform').onsubmit = function(e) {
let group = document.getElementById('group').value.trim();
if(group !== '')
location.href = '/group/' + group;
}
};
async function listPublicGroups() {
let div = document.getElementById('public-groups');