We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ec4cc6 commit 8e678daCopy full SHA for 8e678da
2 files changed
src/pages/options/routes/ScriptList.tsx
@@ -188,7 +188,7 @@ function ScriptList() {
188
{
189
title: "名称",
190
dataIndex: "name",
191
- sorter: (a, b) => a.name.length - b.name.length,
+ sorter: (a, b) => a.name.localeCompare(b.name),
192
filterIcon: <IconSearch />,
193
key: "name",
194
// eslint-disable-next-line react/no-unstable-nested-components
src/pages/options/routes/SubscribeList.tsx
@@ -103,7 +103,7 @@ function SubscribeList() {
103
104
105
106
107
108
109
0 commit comments