Skip to content

Commit

Permalink
docs(module:table): update multiple-sorter.ts (#7353)
Browse files Browse the repository at this point in the history
  • Loading branch information
notthewaquar committed Sep 26, 2022
1 parent b1223bd commit aec94c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/table/demo/multiple-sorter.ts
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 aec94c9

Please sign in to comment.