jamesfredley opened a new pull request, #14900:
URL: https://github.com/apache/grails-core/pull/14900

   Fixes the snapshot URL in the dropdown on 
https://docs.grails.org/snapshot/guide/single.html
   
   ```
   <select 
onchange="window.document.location.href=this.options[this.selectedIndex].value;">
   <option selected="selected" 
value="https://docs.grails.org/snapshot/guide/single.html";>SNAPSHOT</option>
   <option selected="selected" 
value="https://docs.grails.org/7.0.0-SNAPSHOT/guide/single.html";>7.0.0-SNAPSHOT</option></select>
   ```
   
   with
   
   ```
   <select 
onchange="window.document.location.href=this.options[this.selectedIndex].value;">
   <option selected="selected" 
value="https://docs.grails.org/snapshot/guide/single.html";>SNAPSHOT</option>
   <option selected="selected" 
value="https://docs.grails.org/snapshot/guide/single.html";>7.0.0-SNAPSHOT</option>
   </select>
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to