diff --git a/content/master.blade.php b/content/master.blade.php
index caffd0b..7c36595 100644
--- a/content/master.blade.php
+++ b/content/master.blade.php
@@ -240,7 +240,31 @@
${formatter.format(item.data_fields.preis)} |
`;
$('#list-products-in-bag').append(elementProduct);
- if(typeof updateProducts === "function") $('#list-products').append(elementProduct);
+ if(typeof updateProducts === "function") {
+ elementProduct = `
+
+
+
+ |
+
+ ${item.title}
+
+ sofort verfügbar
+
+
+
+ |
+ ${formatter.format(item.data_fields.preis)} |
+
`;
+ $('#list-products').append(elementProduct);
+ }
});
$('#total-price').text(formatter.format(totalPrice));
if(typeof updateProducts === "function") $('#total-checkout-price').text(formatter.format(totalPrice));