1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

remove striped scoreboard and add spectator color

This commit is contained in:
RaidMax
2022-03-28 18:23:11 -05:00
parent 29bc5b7aab
commit 55f3209d94
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ namespace WebfrontCore.Controllers
Deaths = clientData.stats?.MatchData?.Deaths,
ScorePerMinute = clientData.stats?.SessionSPM,
Kdr = clientData.stats?.MatchData?.Kdr,
ZScore = clientData.stats?.ZScore,
ZScore = clientData.stats?.ZScore == null || clientData.stats.ZScore == 0 ? null : clientData.stats.ZScore,
Team = clientData.client.Team
})
.ToList()

View File

@ -23,7 +23,7 @@
}
}
<table class="table table-striped thead-light bg-dark mb-0 table-responsive-md table-sort"
<table class="table thead-light bg-dark mb-0 table-responsive-md table-sort"
data-sort-column="@(Model.OrderByKey ?? nameof(ClientScoreboardInfo.Score))"
data-sort-down="@Model.ShouldOrderDescending.ToString().ToLower()">
<tr class="bg-dark border-bottom">