remove unselect from js menu items

This commit is contained in:
Sergey Stepanov 2023-04-27 13:27:34 +03:00
parent e17a358ade
commit c4895fae84
No known key found for this signature in database
GPG key ID: A56B4929BAA8556B

View file

@ -23,7 +23,7 @@ const gameList = (() => {
log.debug('[games] load game menu');
listBox.innerHTML = games
.map(game => `<div class="menu-item unselectable"><div><span>${game}</span></div></div>`)
.map(game => `<div class="menu-item"><div><span>${game}</span></div></div>`)
.join('');
};