This commit is contained in:
2021-01-27 19:01:56 +00:00
parent ef68eca416
commit 04966f7358
2 changed files with 3 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ namespace AyaNova.Models
public async Task RehydrateIdList(AyContext ct, AuthorizationRoles userRoles, Microsoft.Extensions.Logging.ILogger log, long userId)
{
if (SelectedRowIds.Length == 0)
SelectedRowIds = await AyaNova.DataList.DataListFetcher.GetIdListResponseAsync(DataListKey, ListView, MetaView, ct, userRoles, log, userId);
SelectedRowIds = await AyaNova.DataList.DataListFetcher.GetIdListResponseAsync(ct, this, userRoles, log, userId);
}
}
}