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

Commit

Permalink
Merge pull request #27 from wordcamposaka2019/feature/add-columns
Browse files Browse the repository at this point in the history
ちょういまさらですが、気づきました。ありがとうございます。
@Ippey
  • Loading branch information
fumikito authored Jan 21, 2024
2 parents a644cbf + c70f794 commit 9f616cc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
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

0 comments on commit 9f616cc

Please sign in to comment.