diff --git a/CHANGELOG.md b/CHANGELOG.md index 578a5bbf8..f3f88aaee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ All notable changes to this project will be documented in this file. ### Removed ### Fixed +## [0.82.6] +### Fixed +* ui: Fix missing container selection + ## [0.82.5] ### Changed * Dependency updates diff --git a/ui/src/main/java/io/snabble/sdk/ui/scanner/SelectBundleDialog.java b/ui/src/main/java/io/snabble/sdk/ui/scanner/SelectBundleDialog.java index e382db082..70f0a1f4d 100644 --- a/ui/src/main/java/io/snabble/sdk/ui/scanner/SelectBundleDialog.java +++ b/ui/src/main/java/io/snabble/sdk/ui/scanner/SelectBundleDialog.java @@ -47,7 +47,7 @@ public void click() { listOfProducts.add(product); for (Product p : bundles) { - if (p.getListPrice() != 0 && p.getAvailability() != Product.Availability.NOT_AVAILABLE) { + if (p.getAvailability() != Product.Availability.NOT_AVAILABLE) { listOfProducts.add(p); } } @@ -84,4 +84,4 @@ public interface Callback { void onProductSelected(Product product); void onDismissed(); } -} \ No newline at end of file +}