thisisnic edited a comment on pull request #12212: URL: https://github.com/apache/arrow/pull/12212#issuecomment-1018512860
> > For the main docs, you manually add the dev version in the JS, right? > > Ah, no, it would actually be good this is handled by the script as well. I added it manually last week directly in the hosted sources ([apache/arrow-site#177](https://github.com/apache/arrow-site/pull/177)) to get the dropdown working for the new nightly docs that were added (originally when adding the dropdown, we didn't yet have dev docs). But I should actually have ported that back to the main version of the json file in the apache/arrow repo) Just pushed a commit which now results in this; is this what you'd expect? I also noticed that `dev` has no `/` at the end - does it matter? I construct URLs a bit differently in the R version. ``` [ { "name": "8.0 (dev)", "version": "dev" }, { "name": "7.0 (stable)", "version": "" }, { "name": "6.0", "version": "6.0/" }, { "name": "5.0", "version": "5.0/" }, { "name": "4.0", "version": "4.0/" }, { "name": "3.0", "version": "3.0/" }, { "name": "2.0", "version": "2.0/" }, { "name": "1.0", "version": "1.0/" } ] ``` -- 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]
