Skip to content

Commit 5f0bc33

Browse files
author
samsep
committed
switch to formProps values in steps dropdowns
1 parent 6901d95 commit 5f0bc33

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

components/StepRow/StatusSelect.cjsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ StepRow = ({
3030

3131
if editable
3232
<Select
33-
{...status}
33+
{...formProps}
3434
className = "statuses"
3535
options = {statuses}
3636
clearable = false
3737
placeholder = "Status"
3838
onBlur = { (event) ->
39-
status.onBlur(status.value) }
39+
formProps.onBlur(formProps.value) }
4040
/>
4141
else
4242
if isNew

components/StepRow/StepTypeSelect.cjsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ StepRow = ({
3737
clearable = false
3838
placeholder = "Step Type"
3939
onBlur = { (event) ->
40-
status.onBlur(status.value) }
40+
formProps.onBlur(formProps.value) }
4141
/>
4242
else
4343
<Select className="types" placeholder="Type disabled" disabled />

0 commit comments

Comments
 (0)