Skip to content
Commits on Source (1)
......@@ -161,7 +161,7 @@
_.forEach( selected, function( s ) {
if( s !== "" )
tmp.push( m[ "note" ].indexOf( s ) );
tmp.push( m[ "note" ].toLowerCase().indexOf( s.toLowerCase() ) );
} );
if( Math.max( ...tmp ) != -1 )
......