forked from CGM_Public/pretix_original
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