Skip to content

Commit

Permalink
cast suggestion values to string so boolean fields work
Browse files Browse the repository at this point in the history
  • Loading branch information
nreese committed Feb 3, 2020
1 parent 6154143 commit fddacdb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class StopInput extends Component {

render() {
const suggestionOptions = this.state.suggestions.map(suggestion => {
return { label: suggestion };
return { label: `${suggestion}` };
});

const selectedOptions = [];
Expand Down

0 comments on commit fddacdb

Please sign in to comment.