Skip to content

Commit 6c6e9e4

Browse files
committed
fix typo
1 parent 5d4c4a6 commit 6c6e9e4

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"react-search-input.js",
55
"react-search-input.css"
66
],
7-
"version": "0.2.6",
7+
"version": "0.2.7",
88
"homepage": "https://github.com/enki-com/react-search-input",
99
"description": "Simple react.js component for a search input, providing a filter function.",
1010
"keywords": [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-search-input",
3-
"version": "0.2.6",
3+
"version": "0.2.7",
44
"description": "Simple react.js component for a search input, providing a filter function.",
55
"main": "react-search-input.js",
66
"dependencies": {

react-search-input.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100

101101
var found = false;
102102
for (var i = 0; i < currentKeys.length; i++) {
103-
var values = _getValuesForKey(keys[i], item);
103+
var values = _getValuesForKey(currentKeys[i], item);
104104
values.forEach(function(value) {
105105
try {
106106
if (value && value.search(term) !== -1) {

0 commit comments

Comments
 (0)