Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Commit

Permalink
0.4.8 - Fix focus on NumericRangeInput
Browse files Browse the repository at this point in the history
  • Loading branch information
jducro committed Jul 9, 2018
1 parent b0b54b1 commit 212ab18
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.8 - 2018-07-09

* Fix focus on NumericRangeInput

## 0.4.7 - 2018-07-09

* Fix SelectInput Multiple status change
Expand Down
2 changes: 1 addition & 1 deletion npm-shrinkwrap.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,6 +1,6 @@
{
"name": "@deskpro/token-field",
"version": "0.4.7",
"version": "0.4.8",
"description": "",
"main": "dist/index.js",
"private": false,
Expand Down
4 changes: 2 additions & 2 deletions src/Components/Input/NumericRangeInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ export default class NumericRangeInput extends TokenInput {
return `${displayFrom} ${unitPhrase} to ${displayTo} ${unitPhrase}`;
};

focus = (end) => {
TokenInput.prototype.focus.call(end);
focus(end) {
super.focus(end);
};

focusInput = (end) => {
Expand Down

0 comments on commit 212ab18

Please sign in to comment.