We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6525807 commit 546bfc4Copy full SHA for 546bfc4
frontend/src/components/products-list/ticket-row.tsx
@@ -67,7 +67,7 @@ export const TicketRow = ({
67
{ticket.description && (
68
<CardPart contentAlign="left" background="milk" id="content">
69
<TagsCollection>
70
- {ticket.availableUntil && (
+ {ticket.availableUntil ? (
71
<Tag color="success">
72
<FormattedMessage
73
id="order.availableUntil"
@@ -76,7 +76,7 @@ export const TicketRow = ({
76
}}
77
/>
78
</Tag>
79
- )}
+ ) : null}
80
{ticket.quantityLeft > 0 ? (
81
<Tag color="yellow">
82
0 commit comments