Skip to content
This repository was archived by the owner on Jan 29, 2025. It is now read-only.

Commit a46e1c7

Browse files
committed
fix: remove timezone from duration
1 parent d9a93fe commit a46e1c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/user/workshops/workshop-status-element.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h4 class="name">{{workshop.name}}</h4>
1818
</div>
1919
<div *ngIf="workshop.duration" class="padded">
2020
<p>
21-
<i class="fa fa-clock-o"></i> {{workshop.duration | date:'h:mm':'+0000'}}
21+
<i class="fa fa-clock-o"></i> {{workshop.duration | date:'h:mm'}}
2222
</p>
2323
</div>
2424
<div *ngIf="workshop.place">

src/app/user/workshops/workshop/workshop.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h4 class="name">{{workshop.name}}</h4>
1818
</div>
1919
<div *ngIf="workshop.duration" class="padded">
2020
<p>
21-
<i class="fa fa-clock-o"></i> {{workshop.duration | date:'h:mm':'+0000'}} </p>
21+
<i class="fa fa-clock-o"></i> {{workshop.duration | date:'h:mm'}} </p>
2222
</div>
2323
<div *ngIf="workshop.place">
2424
<p>

0 commit comments

Comments
 (0)