diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-21 18:13:41 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-21 18:13:41 +0200 |
| commit | 578e3408089747fa1cedf59409baf96f27053d21 (patch) | |
| tree | df4baff2e9a0af952f1c2c06ce476488966fcb19 /src/app/components/comment-page/comment-page.component.html | |
| parent | 9a5b8b3d2d036dc9883ce434cb66d7453afa01ab (diff) | |
| download | DevHive-Angular-578e3408089747fa1cedf59409baf96f27053d21.tar DevHive-Angular-578e3408089747fa1cedf59409baf96f27053d21.tar.gz DevHive-Angular-578e3408089747fa1cedf59409baf96f27053d21.zip | |
Removed comment page component
Diffstat (limited to 'src/app/components/comment-page/comment-page.component.html')
| -rw-r--r-- | src/app/components/comment-page/comment-page.component.html | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/app/components/comment-page/comment-page.component.html b/src/app/components/comment-page/comment-page.component.html deleted file mode 100644 index 553b545..0000000 --- a/src/app/components/comment-page/comment-page.component.html +++ /dev/null @@ -1,18 +0,0 @@ -<app-navbar></app-navbar> - -<app-loading *ngIf="!loaded"></app-loading> - -<main id="content" class="scroll-standalone under-navbar" *ngIf="loaded"> - <nav> - <button class="submit-btn" type="submit" (click)="toPost()">ᐊ Back to post</button> - </nav> - <app-comment [paramId]="commentId.toString()"></app-comment> - <nav class="many-buttons" *ngIf="editable"> - <button class="submit-btn" (click)="editComment()">Edit comment</button> - <button class="submit-btn delete-btn" (click)="deleteComment()">Delete comment</button> - </nav> - <form [formGroup]="editCommentFormGroup" (ngSubmit)="editComment()"> - <input type="text" *ngIf="editingComment" placeholder="New comment message" class="input-field" formControlName="newCommentMessage"> - <input type="submit" style="display: none" /> - </form> -</main> |
