Skip to content

Commit

Permalink
Merge pull request #1191 from nyaruka/fix-has-ward
Browse files Browse the repository at this point in the history
Fix has a ward
  • Loading branch information
ericnewcomer authored Jul 7, 2023
2 parents 18295c9 + 52b456b commit 948f95e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/flow/routers/case/CaseElement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ export default class CaseElement extends React.Component<CaseElementProps, CaseE
argument: this.state.argument.value,
min: this.state.min.value,
max: this.state.max.value,
state: this.state.state.value,
district: this.state.district.value,
intent: this.state.intent.value,
confidence: this.state.confidence.value,
exitName: this.state.categoryName.value,
Expand Down Expand Up @@ -146,6 +148,8 @@ export default class CaseElement extends React.Component<CaseElementProps, CaseE
argument: this.state.argument.value,
min: this.state.min.value,
max: this.state.max.value,
state: this.state.state.value,
district: this.state.district.value,
intent: this.state.intent.value,
confidence: this.state.confidence.value,
exitName: this.state.categoryName.value,
Expand Down Expand Up @@ -400,6 +404,7 @@ export default class CaseElement extends React.Component<CaseElementProps, CaseE
onChange={this.handleStateChanged}
style={TextInputStyle.small}
entry={this.state.state}
autocomplete={true}
/>
<span className={styles.divider} data-draggable={true}>
and
Expand All @@ -410,6 +415,7 @@ export default class CaseElement extends React.Component<CaseElementProps, CaseE
onChange={this.handleDistrictChanged}
style={TextInputStyle.small}
entry={this.state.district}
autocomplete={true}
/>
</>
);
Expand Down

0 comments on commit 948f95e

Please sign in to comment.