Skip to content

Commit 51bdf81

Browse files
committed
sorted data table
1 parent 0328b03 commit 51bdf81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Feeds/FeedListView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const COLUMN_DEFINITIONS: ColumnDefinition[] = [
6565
{
6666
id: "id",
6767
label: "ID",
68-
comparator: (a: Feed, b: Feed) => a.data.id.localeCompare(b.data.id),
68+
comparator: (a: Feed, b: Feed) => a.data.id - b.data.id,
6969
},
7070

7171
{

0 commit comments

Comments
 (0)