From 0bb0e226dcec8a17e843444ad27c29b4821dad7c Mon Sep 17 00:00:00 2001 From: "Mark E. Shoulson" Date: Wed, 27 Mar 2024 14:03:44 -0400 Subject: [PATCH] Flip default ordering of workflow library; #5477 --- .../features/workflowLibrary/components/WorkflowLibraryList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invokeai/frontend/web/src/features/workflowLibrary/components/WorkflowLibraryList.tsx b/invokeai/frontend/web/src/features/workflowLibrary/components/WorkflowLibraryList.tsx index c6abb02d19..cae78b82a2 100644 --- a/invokeai/frontend/web/src/features/workflowLibrary/components/WorkflowLibraryList.tsx +++ b/invokeai/frontend/web/src/features/workflowLibrary/components/WorkflowLibraryList.tsx @@ -73,7 +73,7 @@ const WorkflowLibraryList = () => { }, [projectId, ORDER_BY_OPTIONS]); const [order_by, setOrderBy] = useState(orderByOptions[0]?.value as WorkflowRecordOrderBy); - const [direction, setDirection] = useState('ASC'); + const [direction, setDirection] = useState('DESC'); const [debouncedQuery] = useDebounce(query, 500); const queryArg = useMemo[0]>(() => {