Merge branch 'fix'

This commit is contained in:
guozhigq
2024-03-14 00:06:20 +08:00
2 changed files with 2 additions and 2 deletions

View File

@ -7,5 +7,5 @@ enum DynamicsType {
extension BusinessTypeExtension on DynamicsType {
String get values => ['all', 'video', 'pgc', 'article'][index];
String get labels => ['全部', '视频', '', '专栏'][index];
String get labels => ['全部', '投稿', '', '专栏'][index];
}

View File

@ -115,7 +115,7 @@ class SSearchController extends GetxController {
onLongSelect(word) {
int index = historyList.indexOf(word);
historyList.value = historyList.removeAt(index);
historyList.removeAt(index);
historyList.refresh();
histiryWord.put('cacheList', historyList);
}