Skip to content

Commit

Permalink
Flip default ordering of workflow library; #5477
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark E. Shoulson authored and psychedelicious committed Mar 27, 2024
1 parent 86d5367 commit 78eabb2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const WorkflowLibraryList = () => {
}, [projectId, ORDER_BY_OPTIONS]);

const [order_by, setOrderBy] = useState<WorkflowRecordOrderBy>(orderByOptions[0]?.value as WorkflowRecordOrderBy);
const [direction, setDirection] = useState<SQLiteDirection>('ASC');
const [direction, setDirection] = useState<SQLiteDirection>('DESC');
const [debouncedQuery] = useDebounce(query, 500);

const queryArg = useMemo<Parameters<typeof useListWorkflowsQuery>[0]>(() => {
Expand Down

0 comments on commit 78eabb2

Please sign in to comment.