mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Flip default ordering of workflow library; #5477
This commit is contained in:
parent
86d536755d
commit
0bb0e226dc
@ -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]>(() => {
|
||||
|
Loading…
Reference in New Issue
Block a user