Skip to content

Commit

Permalink
fix: replace hardcoded time with actual time
Browse files Browse the repository at this point in the history
  • Loading branch information
gion-andri committed Nov 10, 2023
1 parent d20a213 commit 38b861f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h3>{{ event.title }}</h3>
<p class="location">{{ event.location }}</p>
<div class="details">
<div class="infos">
<span class="time">19:30</span>
<span class="time">{{ event.start ? event.start : 'tuttadi' }}</span>
<div class="tags">
<div class="tag" *ngFor="let tag of event.genres">{{ tag.name }}</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<a *ngIf="event" class="evt" [routerLink]="'/' + event.eventId" [class.first]="isFirst">
<div class="title">
<span class="inline-time">19:30</span>
<span class="inline-time">{{ event.start ? event.start : 'tuttadi' }}</span>
{{ event.title }}
</div>
<div class="location">
{{ event.location }}
</div>
<div class="time">19:30</div>
<div class="time">{{ event.start ? event.start : 'tuttadi' }}</div>
<div class="tags">
<div class="tag" *ngFor="let tag of event.genres">{{ tag.name }}</div>
</div>
Expand Down

0 comments on commit 38b861f

Please sign in to comment.