Skip to content

Commit

Permalink
Merge pull request #502 from unchartedsoftware/bugfix/501
Browse files Browse the repository at this point in the history
Clicking a value in a ValueAssistant should not auto-advance to next token
  • Loading branch information
Ghnuberath authored Jul 16, 2019
2 parents 5856cb4 + 50f2fb1 commit 2ea2e4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@uncharted/lex",
"description": "A preact framework for building token-based search bars",
"version": "0.23.7",
"version": "0.23.8",
"publishConfig": {
"registry": "nexus.uncharted.software"
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/assistants/generic/value-assistant.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export class ValueAssistant extends Assistant {
this.machineState.fetchSuggestions('', this.machine.boxedValue, '');
}
} else {
this.requestTransition();
this.requestTransition({nextToken: false});
}
}

Expand Down

0 comments on commit 2ea2e4b

Please sign in to comment.