Skip to content

Commit

Permalink
fix: show correct time for cancelled sessions. (#7958)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjsparks authored Sep 23, 2024
1 parent 32057f3 commit 25fd4fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/templates/group/meetings-row.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<div class="badge rounded-pill text-bg-secondary">{{ s.current_status_name }}</div>
{% if s.current_status == "canceled" %}
{% with timeslot=s.official_timeslotassignment.timeslot %}
<span class="text-decoration-line-through text-secondary session-time date me-3" data-start-utc="{{ timeslot.time|utc|date:'Y-m-d' }}" data-end-utc="{{ timeslot.end_time|utc|date:'Y-m-d' }}"></span>
<span class="text-decoration-line-through text-secondary session-time date me-3" data-start-utc="{{ timeslot.time|utc|date:'Y-m-d H:i' }}" data-end-utc="{{ timeslot.end_time|utc|date:'Y-m-d H:i' }}"></span>
{% endwith %}
{% endif %}
{% endif %}
Expand Down

0 comments on commit 25fd4fc

Please sign in to comment.