fix views

This commit is contained in:
2021-12-04 10:56:57 +01:00
parent 2242d0e267
commit df067fd3cb
21 changed files with 37 additions and 34 deletions
+2 -3
View File
@@ -1,9 +1,8 @@
import { Component, OnInit, ViewChild } from '@angular/core';
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { CommentService } from '../../services/comment.service';
import { UiComments } from '../../ui/comments/comments.ui';
@Component({
selector: 'page-comment',
@@ -15,7 +14,7 @@ export class PageComment implements OnInit {
id: number;
comment: any;
notfound: boolean = false;
ignoreSubcomments : string[] = ['entry'];
ignoreSubcomments: string[] = [ 'entry' ];
constructor(private commentService: CommentService,
private route: ActivatedRoute) { }