Fixed issue top item selected not filtered

This commit is contained in:
Juan Gilsanz Polo 2023-06-03 04:04:30 +02:00
parent 5a31660f1b
commit 9a1ffa43f4
3 changed files with 4 additions and 81 deletions

View file

@ -146,8 +146,7 @@ class LogsProvider with ChangeNotifier {
}) async {
int offst = inOffset ?? offset;
String resStatus = responseStatus ?? selectedResultStatus;
String? search = searchText ?? searchText;
String resStatus = responseStatus ?? _selectedResultStatus;
if (loadingMore != null && loadingMore == true) {
_isLoadingMore = true;
@ -159,7 +158,7 @@ class LogsProvider with ChangeNotifier {
offset: offst,
olderThan: logsOlderThan,
responseStatus: resStatus,
search: search
search: _searchText
);
if (loadingMore != null && loadingMore == true) {