diff --git a/invokeai/frontend/web/src/features/workflowLibrary/components/WorkflowLibraryList.tsx b/invokeai/frontend/web/src/features/workflowLibrary/components/WorkflowLibraryList.tsx index da98bc100c..2dd442813b 100644 --- a/invokeai/frontend/web/src/features/workflowLibrary/components/WorkflowLibraryList.tsx +++ b/invokeai/frontend/web/src/features/workflowLibrary/components/WorkflowLibraryList.tsx @@ -180,6 +180,7 @@ const WorkflowLibraryList = () => { label={t('common.orderBy')} isDisabled={isFetching} w={64} + minW={56} > { label={t('common.direction')} isDisabled={isFetching} w={64} + minW={56} > { onKeyDown={handleKeydownFilterText} onChange={handleChangeFilterText} data-testid="workflow-search-input" + minW={64} /> {query.trim().length && ( @@ -229,7 +232,7 @@ const WorkflowLibraryList = () => { ) : data.items.length ? ( - + {data.items.map((w) => ( ))} diff --git a/invokeai/frontend/web/src/features/workflowLibrary/components/WorkflowLibraryListItem.tsx b/invokeai/frontend/web/src/features/workflowLibrary/components/WorkflowLibraryListItem.tsx index f16e031a46..3c9adf5cc2 100644 --- a/invokeai/frontend/web/src/features/workflowLibrary/components/WorkflowLibraryListItem.tsx +++ b/invokeai/frontend/web/src/features/workflowLibrary/components/WorkflowLibraryListItem.tsx @@ -36,16 +36,31 @@ const WorkflowLibraryListItem = ({ workflowDTO }: Props) => { ); return ( - + - + {workflowDTO.name || t('workflows.unnamedWorkflow')} {workflowDTO.category === 'user' && ( - + {t('common.updated')}:{' '} {dateFormat(workflowDTO.updated_at, masks.shortDate)}{' '} {dateFormat(workflowDTO.updated_at, masks.shortTime)} @@ -54,7 +69,7 @@ const WorkflowLibraryListItem = ({ workflowDTO }: Props) => { {workflowDTO.description ? ( - + {workflowDTO.description} ) : ( @@ -69,7 +84,12 @@ const WorkflowLibraryListItem = ({ workflowDTO }: Props) => { )} {workflowDTO.category === 'user' && ( - + {t('common.created')}:{' '} {dateFormat(workflowDTO.created_at, masks.shortDate)}{' '} {dateFormat(workflowDTO.created_at, masks.shortTime)} @@ -78,6 +98,7 @@ const WorkflowLibraryListItem = ({ workflowDTO }: Props) => { { {workflowDTO.category === 'user' && ( { h="80%" minW="unset" minH="unset" - maxW= "1200px" - maxH= "600px" + maxW="1200px" + maxH="664px" > {t('workflows.workflowLibrary')}