ship menu now open the stowaways in new tabs
gitea/salix/dev This commit looks good Details

This commit is contained in:
Gerard 2019-03-11 11:29:31 +01:00
parent 891c4b201a
commit 41a34421df
1 changed files with 2 additions and 1 deletions

View File

@ -57,7 +57,8 @@ class Controller {
}
goToTicket(ticketID) {
this.$state.go('ticket.card.sale', {id: ticketID});
let url = this.$state.href('ticket.card.sale', {id: ticketID}, {absolute: true});
window.open(url, '_blank');
}
onMoreOpen() {