Skip to content

Commit

Permalink
Minor fix to the ticket quantity field in Create Booking view
Browse files Browse the repository at this point in the history
  • Loading branch information
VineetReynolds committed Jun 3, 2013
1 parent 90d51ea commit 0708812
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -6,7 +6,7 @@ <h4>Select tickets by category</h4>

<fieldset data-role="fieldcontain">
<label for="ticket-<%=ticketPrice.id%>"><%=ticketPrice.ticketCategory.description%>($<%=ticketPrice.price%>)</label>
<input id="ticket-<%=ticketPrice.id%>" data-tm-id="<%=ticketPrice.id%>" type="number" placeholder="Enter value"
<input id="ticket-<%=ticketPrice.id%>" data-tm-id="<%=ticketPrice.id%>" type="number" min="0" placeholder="Enter value"
name="tickets"/>
</fieldset>
<% }) %>
Expand Down

0 comments on commit 0708812

Please sign in to comment.