Skip to content

Commit

Permalink
Merge pull request #45029 from aloubyansky/re-enable-devui-deps
Browse files Browse the repository at this point in the history
Bring back the dependencies menu item in Dev UI
  • Loading branch information
aloubyansky authored Dec 10, 2024
2 parents f532974 + f39fd21 commit 503c73a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void createBuildTimeActions(BuildProducer<BuildTimeActionBuildItem> buildTimeAct
private boolean isEnabled() {
var value = ConfigProvider.getConfig().getConfigValue("quarkus.bootstrap.incubating-model-resolver");
// if it's not false and if it's false it doesn't come from the default value
return value == null || !"false".equals(value.getValue()) || "default values".equals(value.getSourceName());
return value == null || !"false".equals(value.getValue()) || "DefaultValuesConfigSource".equals(value.getSourceName());
}

private void buildTree(ApplicationModel model, Root root, Optional<Set<String>> allGavs, Optional<String> toTarget) {
Expand Down

0 comments on commit 503c73a

Please sign in to comment.