mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
Widget: Fix price box not shown for free-price events with one product
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user