Fix 'Search only shows the app name of the first app'

Fixes: oc-1369
This commit is contained in:
Bart Visscher 2012-09-17 18:00:54 +02:00
parent b1bab6d113
commit 7749875a0d
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ OC.search.showResults=function(results){
var row=$('#searchresults tr.template').clone();
row.removeClass('template');
row.addClass('result');
if (index == 0){
if (i == 0){
row.children('td.type').text(name);
}
row.find('td.result a').attr('href',type[i].link);