Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

チケット詳細にアレルギーと特別なサポートの項目を追加 #27

Merged
merged 1 commit into from
Jan 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions assets/js/components/ticket-page.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,14 @@ export class Ticket extends Component {
<th>20歳以上</th>
<td>{ ticket.u20 ? ticket.u20 : <span className='text-danger'>いいえ</span>}</td>
</tr>
<tr>
<th>アレルギー</th>
<td>{ ticket.allergic ? <span className='text-danger'>{ticket.allergic}</span> : <span className='text-success'>いいえ</span>}</td>
</tr>
<tr>
<th>特別なサポート</th>
<td>{ ticket.support ? <span className='text-danger'>{ticket.support}</span> : <span className='text-success'>いいえ</span>}</td>
</tr>
<tr>
<th>チェックイン</th>
<td>{ ticket.checkedin ? (
Expand Down
Loading