Remove special handing for location of online tournaments

This commit is contained in:
Claude Brisson
2023-12-27 10:04:05 +01:00
parent 1cd57ac58a
commit 40657427f4
3 changed files with 2 additions and 7 deletions

View File

@@ -139,11 +139,7 @@
info.textContent = txt;
}
} else {
if (input.attr('name') === 'location' && $('input[name="online"]')[0].checked) {
info.textContent = 'online';
} else {
info.textContent = input.value;
}
info.textContent = input.value;
}
}
});