Skip to content

Commit 68c2ddc

Browse files
committed
service form fixes
1 parent 95cf9a5 commit 68c2ddc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

frontend/src/components/entity-forms/service-form.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export const ServiceForm = Shade<ServiceFormProps>({
123123
rows={4}
124124
/>
125125

126-
<div style={{ display: 'flex', gap: '8px', alignItems: 'flex-end' }}>
126+
<div style={{ display: 'flex', gap: '8px', alignItems: 'center' }}>
127127
<div style={{ flex: '1' }}>
128128
<Select
129129
name="repositoryId"
@@ -137,11 +137,11 @@ export const ServiceForm = Shade<ServiceFormProps>({
137137
</div>
138138
{props.onCreateRepository ? (
139139
<Button
140+
type="button"
140141
variant="outlined"
141142
size="small"
142143
onclick={() => setIsCreatingRepo(true)}
143144
startIcon={<Icon icon={icons.plus} size="small" />}
144-
style={{ marginBottom: '4px' }}
145145
>
146146
New
147147
</Button>
@@ -224,6 +224,7 @@ export const ServiceForm = Shade<ServiceFormProps>({
224224
)}
225225
{props.onCreatePrerequisite ? (
226226
<Button
227+
type="button"
227228
variant="outlined"
228229
size="small"
229230
onclick={() => setIsCreatingPrereq(true)}

0 commit comments

Comments
 (0)