Merge pull request #505 from lanedirt/503-searching-in-admin-table-pages-defocuses-search-field-after-every-character-typed

Do not show loading indicator when refreshing in admin
This commit is contained in:
Leendert de Borst
2024-12-31 17:56:01 +01:00
committed by GitHub
3 changed files with 0 additions and 9 deletions

View File

@@ -128,9 +128,6 @@ else
private async Task RefreshData()
{
IsLoading = true;
StateHasChanged();
await using var dbContext = await DbContextFactory.CreateDbContextAsync();
var query = dbContext.AuthLogs.AsQueryable();

View File

@@ -149,9 +149,6 @@ else
private async Task RefreshData()
{
IsLoading = true;
StateHasChanged();
await using var dbContext = await DbContextFactory.CreateDbContextAsync();
var query = dbContext.Logs.AsQueryable();

View File

@@ -112,9 +112,6 @@ else
private async Task RefreshData()
{
IsLoading = true;
StateHasChanged();
await using var dbContext = await DbContextFactory.CreateDbContextAsync();
IQueryable<AliasVaultUser> query = dbContext.AliasVaultUsers;