Commit dfeaff92228e6285056a9443e85a296e369e188c

Authored by Victor Costa
1 parent 5e584c35

Fix pagination condition in side comments

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
src/app/article/comment/comments.component.ts
... ... @@ -89,7 +89,7 @@ export class CommentsComponent {
89 89 }
90 90  
91 91 displayFullPagination() {
92   - return !this.parent && this.fullPagination && this.getPages() > 0;
  92 + return !this.parent && this.fullPagination && this.getPages() > 1;
93 93 }
94 94  
95 95 private getPages() {
... ...