Skip to content

Commit

Permalink
Fix [Workflows] sometimes workflows are sorted in reverse order from …
Browse files Browse the repository at this point in the history
…oldest to newest
  • Loading branch information
mariana-furyk committed Feb 20, 2025
1 parent 627b63b commit 379f5fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elements/WorkflowsTable/WorkflowsTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const WorkflowsTable = React.forwardRef(
const { sortedTableContent } = useSortTable({
headers: tableContent[0]?.content,
content: tableContent,
sortConfig: { defaultSortBy: 'startedAt' }
sortConfig: { defaultSortBy: 'createdat' }
})

const handleRetry = useCallback(() => {
Expand Down

0 comments on commit 379f5fb

Please sign in to comment.