diff --git a/frontend/imports/ui/client/widgets/maintrades.html b/frontend/imports/ui/client/widgets/maintrades.html
index 62b63cc4..64092be9 100644
--- a/frontend/imports/ui/client/widgets/maintrades.html
+++ b/frontend/imports/ui/client/widgets/maintrades.html
@@ -36,10 +36,10 @@
- {{> orderbook title='BUY ORDERS' subtitle=(concat '(click on an order listing to sell ' baseCurrency ')') priceClass='bid' priceLabel='BID PRICE' orders=(findOffers 'bid') showType=false}}
+ {{> orderbook title='BUY ORDERS' subtitle=(concat '(click on an order listing to sell ' baseCurrency ')') priceClass='bid' priceLabel='BID PRICE' orders=(findOffers 'bid') showCancel=true showType=false}}
- {{> orderbook title='SELL ORDERS' subtitle=(concat '(click on an order listing to buy ' baseCurrency ')') priceClass='ask' priceLabel='ASK PRICE' orders=(findOffers 'ask')}}
+ {{> orderbook title='SELL ORDERS' subtitle=(concat '(click on an order listing to buy ' baseCurrency ')') priceClass='ask' priceLabel='ASK PRICE' orders=(findOffers 'ask') showCancel=true}}
diff --git a/frontend/imports/ui/client/widgets/orderbook.html b/frontend/imports/ui/client/widgets/orderbook.html
index fbee456e..3c54b84a 100644
--- a/frontend/imports/ui/client/widgets/orderbook.html
+++ b/frontend/imports/ui/client/widgets/orderbook.html
@@ -17,7 +17,7 @@
{{{loadingIcon}}} Loading sell orders...
{{/if}}
{{/if}}
- {{> orders orders=orders type=priceClass priceLabel=priceLabel priceClass=priceClass canAccept=(isMarketOpen) showCancel=(not isMarketOpen)}}
+ {{> orders orders=orders type=priceClass priceLabel=priceLabel priceClass=priceClass canAccept=(isMarketOpen) showCancel=showCancel}}