Skip to content

Commit 574837b

Browse files
authored
Fix missing bundle selection dialog (APPS-2527) (#267)
1 parent f48e4e7 commit 574837b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

ui/src/main/java/io/snabble/sdk/ui/scanner/SelectBundleDialog.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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+
}

0 commit comments

Comments
 (0)