Widget: Fix price box not shown for free-price events with one product

This commit is contained in:
Raphael Michel
2021-11-23 11:13:09 +01:00
parent 475a5be351
commit b7dfb3697e

View File

@@ -1591,7 +1591,7 @@ var shared_root_computed = {
has_priced = true;
} else {
cnt_items++;
has_priced = has_priced || item.price.gross != "0.00";
has_priced = has_priced || item.price.gross != "0.00" || item.free_price;
}
}
}