Skip to content

Commit

Permalink
fix diff link issues with invisible features (#1512)
Browse files Browse the repository at this point in the history
> in this guide  in the writing the application section the link to view the dependency and configuration changes from the specified features leads to the error in the screenshot
  • Loading branch information
sdelamo authored Oct 15, 2024
1 parent 42630a2 commit 5b60b9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ class GuideAsciidocGenerator {
if (features) {
featureNames = features.tokenize('|')
} else {
featureNames = ([] as List<String>) + app.getFeatures(guidesOption.language)
featureNames = ([] as List<String>) + app.getVisibleFeatures(guidesOption.language)
}

String featureExcludes = extractFromParametersLine(line, 'featureExcludes')
Expand Down

0 comments on commit 5b60b9e

Please sign in to comment.