From 348d4a11de5222a90b3eeee401a2d42aa3d4eca8 Mon Sep 17 00:00:00 2001
From: Praburaj
Date: Tue, 15 Apr 2014 16:49:46 -0700
Subject: [PATCH] Html.ActionLink WebFx bug# 246 is fixed now. Enabling the
code to use the helper.
---
src/MusicStore/Views/Store/Details.cshtml | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/src/MusicStore/Views/Store/Details.cshtml b/src/MusicStore/Views/Store/Details.cshtml
index 76c77fac20..32f73266aa 100644
--- a/src/MusicStore/Views/Store/Details.cshtml
+++ b/src/MusicStore/Views/Store/Details.cshtml
@@ -26,8 +26,6 @@
@Html.ValueFor(model => model.Price)
- @*https://github.com/aspnet/WebFx/issues/246*@
- @*@Html.ActionLink("Add to cart", "AddToCart", "ShoppingCart", new { id = Model.AlbumId })*@
- Add to cart
+ @Html.ActionLink("Add to cart", "AddToCart", "ShoppingCart", new { id = Model.AlbumId })
\ No newline at end of file