We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 84f0061 + f6f60b6 commit d9a4ef9Copy full SHA for d9a4ef9
src/components/DsfrDataTable/DsfrDataTable.vue
@@ -65,7 +65,7 @@ const lowestLimit = computed(() => currentPage.value * rowsPerPage.value)
65
const highestLimit = computed(() => (currentPage.value + 1) * rowsPerPage.value)
66
67
function defaultSortFn (a: string | DsfrDataTableRow, b: string | DsfrDataTableRow) {
68
- const key = props.sorted as string
+ const key = sortedBy.value ?? props.sorted
69
// @ts-expect-error TS7015
70
if (((a as DsfrDataTableRow)[key] ?? a) < ((b as DsfrDataTableRow)[key] ?? b)) {
71
return -1
0 commit comments