aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/Cart.elm
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/Cart.elm')
-rw-r--r--frontend/src/Cart.elm4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/Cart.elm b/frontend/src/Cart.elm
index 4f4cbef..f4697a8 100644
--- a/frontend/src/Cart.elm
+++ b/frontend/src/Cart.elm
@@ -193,7 +193,7 @@ viewCartItemListing listing =
193 -- , div [] [ a [ href ("/product/" ++ String.fromInt listing.productItem.id) ] [ text "View Product" ] ] 193 -- , div [] [ a [ href ("/product/" ++ String.fromInt listing.productItem.id) ] [ text "View Product" ] ]
194 -- ] 194 -- ]
195 tr [] 195 tr []
196 [ td [] [ a [ href ("/product/" ++ String.fromInt listing.productItem.id) ] [ text listing.productItem.name ] ] 196 [ td [] [ furbyLink [ href ("/product/" ++ String.fromInt listing.productItem.id) ] [ text listing.productItem.name ] ]
197 , td [] [ text <| String.fromFloat listing.productItem.price ] 197 , td [] [ text <| String.fromFloat listing.productItem.price ]
198 , td [] 198 , td []
199 [ furbyButton [ onClick (RemoveFromCart listing.productItem.id) ] [ div [ style "font-family" "monospace" ] [ text "-" ] ] 199 [ furbyButton [ onClick (RemoveFromCart listing.productItem.id) ] [ div [ style "font-family" "monospace" ] [ text "-" ] ]
@@ -250,6 +250,6 @@ view model =
250 [ css [ textAlign right ] ] 250 [ css [ textAlign right ] ]
251 [ furbyButton 251 [ furbyButton
252 [] 252 []
253 [ a [ href "/checkout" ] [ text "Checkout" ] ] 253 [ furbyLink [ href "/checkout" ] [ text "Checkout" ] ]
254 ] 254 ]
255 ] 255 ]