fix an asp-action value (#98)

There is no "Update" in BasketController and it should be "Index".
This commit is contained in:
lisabii
2018-06-01 00:09:53 +10:00
committed by Steve Smith
parent a63f0ad921
commit 7a28c62910

View File

@@ -68,7 +68,7 @@
} }
<section class="esh-basket-item col-xs-push-8 col-xs-4"> <section class="esh-basket-item col-xs-push-8 col-xs-4">
<button class="btn esh-basket-checkout" name="updatebutton" value="" type="submit" <button class="btn esh-basket-checkout" name="updatebutton" value="" type="submit"
asp-action="Update">[ Update ]</button> asp-action="Index">[ Update ]</button>
<input type="submit" asp-action="Checkout" <input type="submit" asp-action="Checkout"
class="btn esh-basket-checkout" class="btn esh-basket-checkout"
value="[ Checkout ]" name="action" /> value="[ Checkout ]" name="action" />