Skip to content
Snippets Groups Projects
Commit cc4d669b authored by Daniel Sandu's avatar Daniel Sandu
Browse files

Merge branch 'HIN-1024' into 'develop'

fix(ResponseToInvitation): Confirmation radio-buttons alignment on confirmation box

See merge request !75
parents 412d7001 9a565f92
No related branches found
No related tags found
2 merge requests!110Sprint 21 Features,!75fix(ResponseToInvitation): Confirmation radio-buttons alignment on confirmation box
......@@ -47,7 +47,18 @@ const ResponseToInvitation = ({
<Label required>{label}</Label>
<ValidatedField
component={input => (
<RadioGroup inline name="decision" options={options} {...input} />
<Row alignItems="center" justify="space-between">
<RadioGroup inline name="decision" options={options} {...input} />
<Button
mb={1.7}
mr={2.6}
onClick={handleSubmit}
primary
size="medium"
>
{buttonLabel}
</Button>
</Row>
)}
name="decision"
validate={[required]}
......@@ -68,12 +79,6 @@ const ResponseToInvitation = ({
</Item>
</RowOverrideAlert>
)}
<Row justify="flex-end" mb={1} pr={1}>
<Button onClick={handleSubmit} primary size="medium">
{buttonLabel}
</Button>
</Row>
</ContextualBox>
)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment