Skip to content

Commit

Permalink
switch to formProps values in steps dropdowns
Browse files Browse the repository at this point in the history
  • Loading branch information
samsep committed Feb 23, 2016
1 parent 6901d95 commit 5f0bc33
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/StepRow/StatusSelect.cjsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ StepRow = ({

if editable
<Select
{...status}
{...formProps}
className = "statuses"
options = {statuses}
clearable = false
placeholder = "Status"
onBlur = { (event) ->
status.onBlur(status.value) }
formProps.onBlur(formProps.value) }
/>
else
if isNew
Expand Down
2 changes: 1 addition & 1 deletion components/StepRow/StepTypeSelect.cjsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ StepRow = ({
clearable = false
placeholder = "Step Type"
onBlur = { (event) ->
status.onBlur(status.value) }
formProps.onBlur(formProps.value) }
/>
else
<Select className="types" placeholder="Type disabled" disabled />
Expand Down

0 comments on commit 5f0bc33

Please sign in to comment.