Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 6ea6576

Browse files
committed
Display time til available on mobile channel details
1 parent dd433fc commit 6ea6576

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/view/channel-detail-mobile.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ const ChannelDetailView = ({ store, nav }) => (
4848
<DetailField name="Status">
4949
{store.selectedChannel.statusLabel}
5050
</DetailField>
51+
{store.selectedChannel.timeTilAvailable ? (
52+
<DetailField name="Time Til Available">
53+
{store.selectedChannel.timeTilAvailable}
54+
</DetailField>
55+
) : null}
5156
<DetailField name="Capacity">
5257
{store.selectedChannel.capacityLabel} {store.unitLabel}
5358
</DetailField>

0 commit comments

Comments
 (0)