Skip to content

Fix: Order success Change the download tickets to all tickets button #5860

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

Closed
wants to merge 3 commits into from
Closed
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
2 changes: 1 addition & 1 deletion app/styles/partials/overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ body.dimmable.undetached.dimmed {
}

.space-between {
justify-content: space-between;
justify-content: space-evenly;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can't just change the class content without impacting everywhere the class is used

}

.upper-case {
Expand Down
8 changes: 4 additions & 4 deletions app/templates/orders/view.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
<div class="d-flex space-between">
<button class="ui labeled icon {{if this.isLoadingTickets 'loading'}} {{if this.device.isMobile 'fluid'}} button"
{{action this.downloadTickets this.model.event.name this.model.order.identifier}}>
<i class="ticket alternate icon"></i>
{{t 'Download Tickets'}}
</button>
<button {{action 'downloadInvoice' this.model.event.name this.model.order.identifier }}
<i class="download icon"></i>
{{t 'All Tickets'}}
</button>
<button {{action 'downloadInvoice' this.model.event.name this.model.order.identifier }}
class="ui labeled icon blue {{if this.isLoadingInvoice 'loading'}} {{if this.device.isMobile 'fluid'}} button">
<i class="file alternate icon"></i>
{{t 'Download Invoice'}}
Expand Down