fix(console): infinite scrolling for org context (#7965)

* add scroll directive, iterative loading

* sorting column

* fix: filter

* batch of 100, max height 350px

* cleanup
This commit is contained in:
Max Peintner
2024-05-17 19:28:29 +02:00
committed by GitHub
parent 6858ed7b21
commit f482231f79
8 changed files with 107 additions and 47 deletions

View File

@@ -418,9 +418,12 @@ export class GrpcAuthService {
if (queryList) {
req.setQueriesList(queryList);
}
// if (sortingColumn) {
// req.setSortingColumn(sortingColumn);
// }
if (sortingDirection) {
query.setAsc(sortingDirection === 'asc');
}
if (sortingColumn) {
req.setSortingColumn(sortingColumn);
}
req.setQuery(query);