Skip to content

Commit

Permalink
Add Note, reformat closed block
Browse files Browse the repository at this point in the history
  • Loading branch information
ssciolla committed Feb 17, 2021
1 parent c1478b9 commit ec25258
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/assets/src/components/queue.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,11 @@ export function QueuePage(props: PageProps<QueuePageParams>) {
`Are you sure you want to ${dialogParts.action}? ` +
`By ${dialogParts.gerund}, ${dialogParts.consequences}. ` +
'If you change your mind, you will have to re-join at the end of the line.' +
(queueStatus === 'closed' ? ' The queue is currently closed. You will not be able to re-join until the queue is re-opened.' : '')
(
queueStatus === 'closed'
? ' Note: The queue is currently closed. You will not be able to re-join until the queue is re-opened.'
: ''
)
);
showConfirmation(dialogRef, () => doLeaveQueue(), dialogParts.title, description);
}
Expand Down

0 comments on commit ec25258

Please sign in to comment.