Skip to content

Commit

Permalink
fixed time display and add est
Browse files Browse the repository at this point in the history
  • Loading branch information
nickchoi10 committed Sep 7, 2022
1 parent 954c6e4 commit b9ddc1b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/models/squeak.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ export interface Squeak {
id: number;
content: string;
squeaker: Squeaker
postedAt: number;

postedAtDate: number;
postedAtTime: number;
}
2 changes: 1 addition & 1 deletion src/app/profile/profile.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ <h2 class="post__headerSpecial"><i class='fas fa-calendar-alt'></i>Joined {{curr
<h3>
{{ squeak.squeaker.firstName }} {{squeak.squeaker.lastName}}
<span class="post__headerSpecial"
><span class="material-icons post__badge"> verified </span>@{{ squeak.squeaker.username }} {{squeak.postedAt}}</span
><span class="material-icons post__badge"> verified </span>@{{ squeak.squeaker.username }} · {{squeak.postedAtDate}} · {{squeak.postedAtTime}}</span
>
</h3>
</div>
Expand Down

0 comments on commit b9ddc1b

Please sign in to comment.