Skip to content

Commit

Permalink
Remove slash in api call (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien1999 authored Feb 24, 2020
1 parent 53ed5f8 commit 4492656
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ <h4>Are you certain you want to delete [[removeAmount]] seat(s) from the followi
this.$.editSeatError.setError("That ticket does not exist, choose a different one!");
return;
}
this.$.ajaxAssignSeat.refurl = `/seats/${seat.seatGroup}/${seat.seatNumber}/${ticketID}`;
this.$.ajaxAssignSeat.refurl = `seats/${seat.seatGroup}/${seat.seatNumber}/${ticketID}`;
this.$.ajaxAssignSeat.generateRequest();
}

Expand Down

0 comments on commit 4492656

Please sign in to comment.