Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Making Ticket Buttons Inline #3185

Merged
merged 2 commits into from
Jun 25, 2019
Merged
Changes from 1 commit
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
15 changes: 8 additions & 7 deletions app/templates/components/forms/wizard/basic-details-step.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -208,14 +208,15 @@
{{widgets/forms/link-input inputId='ticket_url' segmentedLink=data.event.segmentedTicketUrl}}
</div>
{{/if}} --}}

<button type="button" class="ui blue small button" {{action 'addTicket' 'donation' data.event.tickets.length}}>
<i class="large icons basic-details">
<i class="heart icon"></i>
<i class="inverted corner add icon"></i>
</i>
{{t 'Donation Ticket'}}
</button>
</div>
<button type="button" class="ui blue small button" {{action 'addTicket' 'donation' data.event.tickets.length}}>
<i class="large icons basic-details">
<i class="heart icon"></i>
<i class="inverted corner add icon"></i>
</i>
{{t 'Donation Ticket'}}
</button>
{{else}}
<div class="field">
<label for="ticket_url">{{t 'Ticket URL'}}</label>
Expand Down