templates: remove console.log statement in mode.html

Remove print statement generating noise in the browser logs
master
Alejandro Sirgo Rica 2024-06-17 09:49:30 +02:00
parent a637a958b0
commit 664ad2bf7b
1 changed files with 0 additions and 1 deletions

View File

@ -57,7 +57,6 @@
$('.badge-pill').each(function(index) {
for (const mode in modesSet) {
for (const clientName of modesSet[mode]) {
console.log(mode, clientName, $(this).html())
if ($(this).html().includes(clientName)) {
$(this).html($(this).html() + '<br>mode: ' + mode);
break;