diff options
Diffstat (limited to 'src/DevHive.Angular/src/app/components/post/post.component.html')
| -rw-r--r-- | src/DevHive.Angular/src/app/components/post/post.component.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/DevHive.Angular/src/app/components/post/post.component.html b/src/DevHive.Angular/src/app/components/post/post.component.html index 8fbda35..ea81bdf 100644 --- a/src/DevHive.Angular/src/app/components/post/post.component.html +++ b/src/DevHive.Angular/src/app/components/post/post.component.html @@ -1,3 +1,5 @@ +<app-loading *ngIf="!loaded"></app-loading> + <div class="post rounded-border" *ngIf="loaded"> <div class="content"> <div class="author" (click)="goToAuthorProfile()"> @@ -11,10 +13,10 @@ </div> </div> </div> - <div class="message"> + <div class="message" (click)="goToPostPage()"> {{ post.message }} </div> - <div class="timestamp"> + <div class="timestamp" (click)="goToPostPage()"> {{ timeCreated }} </div> </div> |
