File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
ui/src/main/java/io/snabble/sdk/ui/scanner Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ All notable changes to this project will be documented in this file.
77### Removed
88### Fixed
99
10+ ## [ 0.82.6]
11+ ### Fixed
12+ * ui: Fix missing container selection
13+
1014## [ 0.82.5]
1115### Changed
1216* Dependency updates
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public void click() {
4747 listOfProducts .add (product );
4848
4949 for (Product p : bundles ) {
50- if (p .getListPrice () != 0 && p . getAvailability () != Product .Availability .NOT_AVAILABLE ) {
50+ if (p .getAvailability () != Product .Availability .NOT_AVAILABLE ) {
5151 listOfProducts .add (p );
5252 }
5353 }
@@ -84,4 +84,4 @@ public interface Callback {
8484 void onProductSelected (Product product );
8585 void onDismissed ();
8686 }
87- }
87+ }
You can’t perform that action at this time.
0 commit comments