mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-05 04:40:37 +00:00
Fixed issue top item selected not filtered
This commit is contained in:
parent
5a31660f1b
commit
9a1ffa43f4
3 changed files with 4 additions and 81 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue