Skip to content

Commit

Permalink
fix(amazon/loadBalancers): Show target group sticky status appropriat…
Browse files Browse the repository at this point in the history
…ely (#5010)
  • Loading branch information
Justin Reynolds committed Mar 16, 2018
1 parent a197829 commit 99bf884
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ class TargetGroupsImpl extends React.Component<ITargetGroupsProps & IWizardPageP
<label className="checkbox-inline" style={{ paddingTop: '2px' }}>
<input
type="checkbox"
value={targetGroup.attributes.stickinessEnabled ? 'true' : 'false'}
checked={targetGroup.attributes.stickinessEnabled}
onChange={(event) => this.targetGroupFieldChanged(index, 'attributes.stickinessEnabled', event.target.checked)}
/>
{' '}<label>Sticky</label><HelpField id="aws.targetGroup.attributes.stickinessEnabled"/>
Expand Down

0 comments on commit 99bf884

Please sign in to comment.