mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-06-12 04:37:37 +02:00
fix: change select icon default state
This commit is contained in:
@ -54,7 +54,7 @@ class _PatchesSelectorViewState extends State<PatchesSelectorView> {
|
||||
Expanded(
|
||||
child: ListView(
|
||||
children: model
|
||||
.getFilteredPatches(_query)
|
||||
.getQueriedPatches(_query)
|
||||
.map((patch) => PatchItem(
|
||||
name: patch.name,
|
||||
simpleName: patch.simpleName,
|
||||
|
@ -51,7 +51,7 @@ class PatchesSelectorViewModel extends BaseViewModel {
|
||||
locator<PatcherViewModel>().notifyListeners();
|
||||
}
|
||||
|
||||
List<Patch> getFilteredPatches(String query) {
|
||||
List<Patch> getQueriedPatches(String query) {
|
||||
return patches
|
||||
.where((patch) =>
|
||||
query.isEmpty ||
|
||||
|
Reference in New Issue
Block a user