samredai commented on issue #5351: URL: https://github.com/apache/iceberg/issues/5351#issuecomment-1194129175
Ah thanks for catching this. This is quick fix, the docs menu item is supposed to actually be a relative link, similar to the others. So [this](https://github.com/apache/iceberg-docs/blob/main/docs/config.toml#L35) line needs to be changed from: ``` { name = "Docs", url = "/docs/latest", weight = 200 }, ``` to: ``` { name = "Docs", pre = "relative", url = "../../docs/latest", weight = 200 }, ``` We'll need that change to happen in the `main`, `latest`, `0.14.0`, and `0.13.2` branches. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
