@apexcura/ui-components 0.0.11-Beta201 → 0.0.11-Beta203
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -637,8 +637,8 @@ var TableElement = (props) => {
|
|
|
637
637
|
dataIndex: col.name,
|
|
638
638
|
key: col.key,
|
|
639
639
|
sorter: {
|
|
640
|
-
compare: (a, b) => a[col.key] - b[col.key]
|
|
641
|
-
multiple: thead.length - ind
|
|
640
|
+
compare: (a, b) => a[col.key] - b[col.key]
|
|
641
|
+
// multiple: thead.length - ind-1
|
|
642
642
|
}
|
|
643
643
|
}))
|
|
644
644
|
];
|
package/dist/index.mjs
CHANGED
|
@@ -586,8 +586,8 @@ var TableElement = (props) => {
|
|
|
586
586
|
dataIndex: col.name,
|
|
587
587
|
key: col.key,
|
|
588
588
|
sorter: {
|
|
589
|
-
compare: (a, b) => a[col.key] - b[col.key]
|
|
590
|
-
multiple: thead.length - ind
|
|
589
|
+
compare: (a, b) => a[col.key] - b[col.key]
|
|
590
|
+
// multiple: thead.length - ind-1
|
|
591
591
|
}
|
|
592
592
|
}))
|
|
593
593
|
];
|