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

Fixes: oc-1369
remotes/origin/stable45
Bart Visscher 13 years ago
parent b1bab6d113
commit 7749875a0d
  1. 2
      search/js/result.js

@ -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);

Loading…
Cancel
Save