Fixing missing checkin, hack for the casual - wc bug

This commit is contained in:
Christian 'ketura' McCarty
2023-08-12 23:22:08 -05:00
parent e331429930
commit 02b15a4200
2 changed files with 7 additions and 2 deletions

View File

@@ -285,7 +285,7 @@ table.tables tr.privateForPlayer {
}
.wc-events {
background-color: #a0a01c;
background-color: #666619;
}
.tableFormatName {

View File

@@ -498,7 +498,7 @@ var GempLotrHallUI = Class.extend({
var joined = tournament.getAttribute("signedUp");
if (joined == "true") {
var but = $("<button>Drop from tournament</button>");
var but = $("<button>Abandon Tournament</button>");
$(but).button().click((
function(tourneyInfo) {
var tourneyId = tournament.getAttribute("id");
@@ -642,6 +642,11 @@ var GempLotrHallUI = Class.extend({
}
name += "</td>";
//TODO: Replace this with an actual fix on the server side
if(name.includes("Casual - WC")) {
name = "<td>Competitive - Format Championships</td>"
}
row.append(name);
row.append("<td>" + statusDescription + "</td>");