Skip to content

Commit

Permalink
docs(module:table): update multiple-sorter.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
notthewaquar committed Apr 7, 2022
1 parent b517bd4 commit d7e4be4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/table/demo/multiple-sorter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class NzDemoTableMultipleSorterComponent {
listOfColumn = [
{
title: 'Name',
compare: null,
compare: (a: DataItem, b: DataItem) => a.name.localeCompare(b.name),
priority: false
},
{
Expand Down

0 comments on commit d7e4be4

Please sign in to comment.