Fix pagina dipendenti

This commit is contained in:
Samuele Locatelli
2021-12-07 16:47:29 +01:00
parent 3201c7e7b3
commit 1922a6a41c
2 changed files with 7 additions and 3 deletions
+4 -2
View File
@@ -42,7 +42,8 @@ namespace GPW.CORE.UI.Pages
if (_currPage != value)
{
_currPage = value;
ReloadData().ConfigureAwait(false);
var pUpd = Task.Run(async () => await ReloadData());
pUpd.Wait();
}
}
}
@@ -62,7 +63,8 @@ namespace GPW.CORE.UI.Pages
if (_numRecord != value)
{
_numRecord = value;
ReloadData().ConfigureAwait(false);
var pUpd = Task.Run(async () => await ReloadData());
pUpd.Wait();
}
}
}
+3 -1
View File
@@ -8,8 +8,10 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="~/" />
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
@*<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />*@
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css" />
<link href="css/site.css" rel="stylesheet" />
<link href="lib/font-awesome/css/all.css" rel="stylesheet" />
<link href="GPW.CORE.UI.styles.css" rel="stylesheet" />
<component type="typeof(HeadOutlet)" render-mode="ServerPrerendered" />
</head>