File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 8080 for ( var i = 0 ; i < items . length ; i ++ ) {
8181 if ( items [ i ] . title . toLowerCase ( ) . indexOf ( query . toLowerCase ( ) ) >= 0 || query . trim ( ) === '' ) found . push ( i ) ;
8282 }
83- return found ; //return array with mathced indexes
83+ return found ; //return array with matched indexes
8484 } ,
8585 // Item height
8686 height : $theme . ios ? 63 : ( $theme . md ? 73 : 77 ) ,
9494
9595 return $render ;
9696 }
97- </ script >
97+ </ script >
Original file line number Diff line number Diff line change 7272 for ( var i = 0 ; i < items . length ; i ++ ) {
7373 if ( items [ i ] . title . toLowerCase ( ) . indexOf ( query . toLowerCase ( ) ) >= 0 || query . trim ( ) === '' ) found . push ( i ) ;
7474 }
75- return found ; //return array with mathced indexes
75+ return found ; //return array with matched indexes
7676 } ,
7777 // List item render
7878 renderItem ( item ) {
9999
100100 return $render ;
101101 }
102- </ script >
102+ </ script >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ export default () => {
2222 )
2323 found . push ( i ) ;
2424 }
25- return found ; // return array with mathced indexes
25+ return found ; // return array with matched indexes
2626 } ;
2727 const renderExternal = ( vl , newData ) => {
2828 setVlData ( { ...newData } ) ;
Original file line number Diff line number Diff line change 2828 if (items[i].title .toLowerCase ().indexOf (query .toLowerCase ()) >= 0 || query .trim () === ' ' )
2929 found .push (i);
3030 }
31- return found; // return array with mathced indexes
31+ return found; // return array with matched indexes
3232 }
3333
3434 function renderExternal (virtualList , virtualListData ) {
You can’t perform that action at this time.
0 commit comments