Skip to content

Commit

Permalink
MID-8506:removing info label for disabled mappings
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Mar 27, 2023
1 parent b84608a commit fe43353
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ private IModel<ResourceAttributeWrapper<T>> getResourceAttributeDefinitionModel(
private boolean hasOutboundMapping() {
return getResourceAttributeDefinitionModel() != null &&
getResourceAttributeDefinitionModel().getObject() != null &&
getResourceAttributeDefinitionModel().getObject().hasOutboundMapping();
getResourceAttributeDefinitionModel().getObject().hasOutboundMapping() &&
!Boolean.FALSE.equals(getResourceAttributeDefinitionModel().getObject().getOutboundMappingBean().isEnabled());
}

}

0 comments on commit fe43353

Please sign in to comment.