fix game tab selection on home
This commit is contained in:
parent
25fb5fdc14
commit
039a05d9ad
@ -33,7 +33,8 @@ namespace WebfrontCore.ViewComponents
|
|||||||
{
|
{
|
||||||
if (game.HasValue)
|
if (game.HasValue)
|
||||||
{
|
{
|
||||||
ViewBag.Maps = _defaultSettings.Maps.FirstOrDefault(map => map.Game == game);
|
ViewBag.Maps = _defaultSettings.Maps.FirstOrDefault(map => map.Game == game)?.Maps.ToList() ??
|
||||||
|
new List<Map>();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user