diff --git a/hledger-web/Handler/Common.hs b/hledger-web/Handler/Common.hs
index 8cb332b7d..6b34c4c1c 100644
--- a/hledger-web/Handler/Common.hs
+++ b/hledger-web/Handler/Common.hs
@@ -532,7 +532,7 @@ numberTransactionsReportItems items = number 0 nulldate items
(prevdy,prevdm,_) = toGregorian prevd
mixedAmountAsHtml :: MixedAmount -> Html
-mixedAmountAsHtml b = preEscapedString $ addclass $ intercalate "
" $ lines $ showMixedAmount b
+mixedAmountAsHtml b = preEscapedString $ addclass $ intercalate "
" $ lines $ showMixedAmountWithoutPrice b
where addclass = printf "%s" (c :: String)
c = case isNegativeMixedAmount b of Just True -> "negative amount"
_ -> "positive amount"