Skip to content

Commit

Permalink
add top border to rows
Browse files Browse the repository at this point in the history
  • Loading branch information
JimGeersinga committed Mar 20, 2024
1 parent 7652f37 commit 213a00b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap rescap">

<Identity Name="maui-package-name-placeholder" Publisher="CN=JimG" Version="1.8.5.0" />
<Identity Name="maui-package-name-placeholder" Publisher="CN=JimG" Version="1.8.6.0" />

<mp:PhoneIdentity PhoneProductId="3DAE7680-3F65-440F-908F-252D648F20FC" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

Expand Down
5 changes: 4 additions & 1 deletion NED.WoT.BattleResults.Client/Services/MapNameResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@ public static string GetMapName(string key)
return name;
}

UndefinedMapNames.Add(key);
if (!string.IsNullOrWhiteSpace(key))
{
UndefinedMapNames.Add(key);
}

return key;
}
Expand Down
5 changes: 4 additions & 1 deletion NED.WoT.BattleResults.Client/Services/TankNameResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1448,7 +1448,10 @@ public static string GetTankName(string key)
return name;
}

UndefinedTankNames.Add(key);
if (!string.IsNullOrWhiteSpace(key))
{
UndefinedTankNames.Add(key);
}

return key;
}
Expand Down
6 changes: 5 additions & 1 deletion NED.WoT.BattleResults.Client/wwwroot/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -264,4 +264,8 @@ a, .btn-link {
display: inline-block;
width: 75px;
text-align: right;
}
}

.report-table .mud-table-body .match-info > td {
border-top: 1px solid var(--mud-palette-table-lines);
}

0 comments on commit 213a00b

Please sign in to comment.