Skip to content

Commit

Permalink
fixed missing code due to merge
Browse files Browse the repository at this point in the history
Signed-off-by: Markus Block <[email protected]>
  • Loading branch information
blomark committed Oct 1, 2021
1 parent 9a3d886 commit 2e7494e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public ProxyDistributionSet map(final DistributionSet distributionSet) {
HawkbitCommonUtil.getFormattedNameVersion(distributionSet.getName(), distributionSet.getVersion()));
proxyDistribution.setIsComplete(distributionSet.isComplete());
proxyDistribution.setRequiredMigrationStep(distributionSet.isRequiredMigrationStep());
proxyDistribution.setIsValid(distributionSet.isValid());

final DistributionSetType type = distributionSet.getType();
final ProxyTypeInfo typeInfo = new ProxyTypeInfo(type.getId(), type.getName(), type.getKey());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public DistributionSetStatelessDataProvider(final DistributionSetManagement dist
@Override
protected Page<DistributionSet> loadBackendEntities(final PageRequest pageRequest, final String filter) {
final DistributionSetFilterBuilder builder = new DistributionSetFilterBuilder().setIsDeleted(false)
.setIsComplete(true);
.setIsComplete(true).setIsValid(true);

if (!StringUtils.isEmpty(filter)) {
builder.setFilterString(filter);
Expand Down

0 comments on commit 2e7494e

Please sign in to comment.