mod: 移除评论按【最多回复】排序 issues #298

This commit is contained in:
guozhigq
2024-02-05 23:41:40 +08:00
parent ae14653e72
commit 78ade4a193
5 changed files with 16 additions and 13 deletions

View File

@ -1,6 +1,6 @@
enum ReplySortType { time, like, reply }
enum ReplySortType { time, like }
extension ReplySortTypeExtension on ReplySortType {
String get titles => ['最新评论', '最热评论', '回复最多'][index];
String get labels => ['最新', '最热', '最多回复'][index];
String get titles => ['最新评论', '最热评论'][index];
String get labels => ['最新', '最热'][index];
}