Skip to content

Commit

Permalink
Fix another oversight from design refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
Zarel committed Nov 10, 2023
1 parent 12a83e9 commit 9219fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/client-mainmenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@
for (var roomid in this.games) {
var name = this.games[roomid];
if (name.slice(-1) === '*') name = name.slice(0, -1);
buf += '<div><a href="/' + toRoomid(roomid) + '" class="ilink" style="text-align: center">' + BattleLog.escapeHTML(name) + '</a></div>';
buf += '<div><a href="/' + toRoomid(roomid) + '" class="blocklink" style="text-align: center">' + BattleLog.escapeHTML(name) + '</a></div>';
}
buf += '</div>';
if (!$searchGroup.is(':visible')) buf += '<p class="buttonbar"><button name="showSearchGroup" class="button">Add game</button></p>';
Expand Down

0 comments on commit 9219fb3

Please sign in to comment.