Skip to content

Commit

Permalink
Change format of note so timestamp and message are on seperate lines
Browse files Browse the repository at this point in the history
Changed the format of the note so that the timestamp and message body are on seperate lines #2
  • Loading branch information
Jack Perala committed Mar 29, 2020
1 parent 7a2b589 commit d8c7125
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/app/owners/owner-doorboard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ <h3>{{this.owner.name}}</h3>
<!--Each message is its own mat-card-->
<div fxFlex="column" class="list-of-notes">
<mat-card fxLayout="row wrap" class="note-card">
<p class="message-content">{{note.message}}</p>
<p class="timestamp">{{note.timestamp}}</p>
<p class="timestamp">{{note.timestamp}}<br/>
{{note.message}}</p>
</mat-card>
</div>
</mat-list-item>
Expand Down

0 comments on commit d8c7125

Please sign in to comment.