mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
fix: search (#1412)
This commit is contained in:
committed by
GitHub
parent
e1944b0c8d
commit
4e15422d2d
@@ -4,7 +4,7 @@ import 'package:get/get.dart';
|
||||
class SearchResultController extends GetxController {
|
||||
String keyword = Get.parameters['keyword'] ?? '';
|
||||
|
||||
RxList<int> count = List.generate(SearchType.values.length, (_) => -1).obs;
|
||||
RxList<int> count = List.filled(SearchType.values.length, -1).obs;
|
||||
|
||||
RxInt toTopIndex = (-1).obs;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user