Skip to content

Commit

Permalink
🐛 [#4908] Change service select field name
Browse files Browse the repository at this point in the history
It should match the corresponding property of the serializer (which is 'service' and not 'service_select')
  • Loading branch information
viktorvanwijk committed Dec 19, 2024
1 parent 26590e7 commit 27da770
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const ServiceSelect = ({options}) => {
return (
<FormRow>
<Field
name="serviceSelect"
name="service"
label={
<FormattedMessage
description="JSON registration options 'serviceSelect' label"
Expand All @@ -18,7 +18,7 @@ const ServiceSelect = ({options}) => {
}
>
<ReactSelect
name="serviceSelect"
name="service"
options={options}
required
/>
Expand Down

0 comments on commit 27da770

Please sign in to comment.