This is an automated email from the ASF dual-hosted git repository. matrei pushed a commit to branch issue-421 in repository https://gitbox.apache.org/repos/asf/grails-static-website.git
commit fe23eb0e9f4ac6efb7f7abaa5288d4a914575e2e Author: Mattias Reichel <[email protected]> AuthorDate: Mon Jan 26 21:10:53 2026 +0100 fix: link correctly to single page user guide Closes gh-421 --- .../src/main/groovy/org/grails/documentation/DocumentationPage.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/src/main/groovy/org/grails/documentation/DocumentationPage.groovy b/buildSrc/src/main/groovy/org/grails/documentation/DocumentationPage.groovy index 4a3d5bcea56..e46b8f1e418 100644 --- a/buildSrc/src/main/groovy/org/grails/documentation/DocumentationPage.groovy +++ b/buildSrc/src/main/groovy/org/grails/documentation/DocumentationPage.groovy @@ -87,7 +87,7 @@ class DocumentationPage { div(class: 'versionselector') { h4 'Single Page - User Guide' - select(onchange: "window.location.href='https://grails.apache.org/docs/' + this.value + '/'") { + select(onchange: "window.location.href='https://grails.apache.org/docs/' + this.value + '/guide/single.html'") { option 'Select a version' mkp.yield('[%versions]') }
