diff --git a/assets/js/index.js b/assets/js/index.js index 0fa414e..940fc6c 100644 --- a/assets/js/index.js +++ b/assets/js/index.js @@ -33,8 +33,10 @@ Vue.component('result-cell', { }, cellContent: function(h) { switch (this.col.id) { - case 'name': + case 'author_name': return this.link(h, 'user', this.item.name, this.authorUrl(this.item.id)); + case 'serie_name': + return this.link(h, 'list', this.item.name, this.authorUrl(this.item.id)); case 'count': return this.item.count; case 'title': @@ -42,8 +44,10 @@ Vue.component('result-cell', { case 'authors': var elts = []; var authors = this.item.authors; - for (i=0;i