Sorting by creation time doesn't work in Navigator, neither in custom nor in default view
App Development2 posts131 views1 likesLast activity Sep 2022
GY
gyorgybalazsiOP
Sep 2022I want to create some custom Navigator UI where I want to sort contracts by creation time.
This is the relevant section of my frontend-config.js:
sort: [
{
field: "createEvent.transaction.effectiveAt",
direction: "DESCENDING"
}
]
},
columns: [
{
key: "createEvent.transaction.effectiveAt",
title: "Created",
createCell: ({rowData}) => ({
type: "text",
value: rowData.createEvent.transaction.effectiveAt
}),
sortable: true,
width: 80,
weight: 0,
alignment: "left"
},
This is the result which is obviously not correct. The order of the rows don’t even change if I switch sorting direction.
Sorting by time doesn’t work on the default view either.
ST
stefanobaghino-da
Sep 2022Hi @gyorgybalazsi, thanks for letting us know. This bug is already tracked but unfortunately we haven’t been able to work on it yet due to conflicting priorities. As we expand the team, we should be able to catch up with the backlog and fix this issue as well. Thanks again for the report.
