Skip to content

Commit

Permalink
fix: πŸ› fixing firefox number edit
Browse files Browse the repository at this point in the history
Adding line provided by waclaw66 to set focus outside of timeout for
firefox number edit

Closes: #6953
  • Loading branch information
Portugal authored and mportuga committed Sep 27, 2020
1 parent f7d48ee commit b58f78d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/edit/src/js/gridEdit.js
Original file line number Diff line number Diff line change
Expand Up @@ -976,6 +976,9 @@
}
});

if ($elm[0]) {
$elm[0].focus();
}
$elm.on('blur', $scope.stopEdit);
});

Expand Down

0 comments on commit b58f78d

Please sign in to comment.