diff --git a/modules/ticket/front/summary/index.html b/modules/ticket/front/summary/index.html
index 901e089db..6486241c7 100644
--- a/modules/ticket/front/summary/index.html
+++ b/modules/ticket/front/summary/index.html
@@ -172,6 +172,7 @@
Description
Price
Tax class
+ Amount
@@ -180,8 +181,9 @@
{{::service.id}}
{{::service.quantity}}
{{::service.description}}
- {{::service.price}}
- {{::service.taxClass.description}}
+ {{::service.price | currency: 'EUR':2}}
+ {{::service.taxClass.description}}
+ {{::service.quantity * service.price | currency: 'EUR':2}}
diff --git a/modules/ticket/front/summary/style.scss b/modules/ticket/front/summary/style.scss
index d92121194..9a2159c56 100644
--- a/modules/ticket/front/summary/style.scss
+++ b/modules/ticket/front/summary/style.scss
@@ -53,7 +53,7 @@ vn-ticket-summary .summary {
.vn-table > vn-thead .tax-class,
.vn-table > vn-tbody .tax-class {
- min-width: 176px;
+ min-width: 90px;
width: 1px;
}