Skip to content
Commits on Source (1)
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
update_search_result = function() update_search_result = function()
{ {
var searched = $( "#search_bar" ).val(); var searched = $( "#search_bar" ).val();
searched = searched.toLowerCase(); searched = searched.toLowerCase().substr( 0, 18 );
var tmp = []; var tmp = [];
_.forEach( uuid_list, function( uuid ) _.forEach( uuid_list, function( uuid )
......