Skip to content

Commit 94dcf39

Browse files
tweak(ui): styling for image collection fields
1 parent e7a60c0 commit 94dcf39

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

invokeai/frontend/web/src/features/nodes/components/flow/nodes/Invocation/fields/inputs/ImageFieldCollectionInputComponent.tsx

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,7 @@ export const ImageFieldCollectionInputComponent = memo(
8282
justifyContent="center"
8383
>
8484
{(!field.value || field.value.length === 0) && (
85-
<UploadMultipleImageButton
86-
w="full"
87-
h="auto"
88-
isError={isInvalid}
89-
onUpload={onUpload}
90-
fontSize={24}
91-
variant="ghost"
92-
/>
85+
<UploadMultipleImageButton w="full" h="auto" isError={isInvalid} onUpload={onUpload} fontSize={24} />
9386
)}
9487
{field.value && field.value.length > 0 && (
9588
<Box w="full" h="auto" p={1} sx={sx} data-error={isInvalid} borderRadius="base">

0 commit comments

Comments
 (0)