-
Notifications
You must be signed in to change notification settings - Fork 1.6k
fix site menu #16524
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix site menu #16524
Conversation
Hi @Ajay-singh1. Thanks for your PR. I'm waiting for a istio member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/ok-to-test
<button {{ if not $collapse }} class="show" {{ end }} aria-hidden="true" tabindex="-1"></button> | ||
<a title="{{ $desc }}" href="{{ .Permalink }}">{{ $linktitle }}</a> | ||
{{ partial "navigation_level.html" (dict "pages" .Pages "parent" . "current" $current "collapse" $collapse "top" false "labelledby" "" "depth" (add $depth 1)) }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't even need the depth to make this work, and tbh I would have thought {{ if lt (len $pageLocation) 6 }}
would catch that. But ChatGPT did give me the same suggestion 😄
I spent some time digging into this last night.
The issue is the use of partialCached
, which I believe was added to get decent build performance. That has been removed in both versions, and re-adding it to this PR still causes the problem to recur.
If I revert the file to e24e58a and change partialCached
to partial
on L66 I get a working fix. I think we should do that for now please.
Ohh Wow! Genius 🤯.Changing |
hooray https://preliminary.istio.io/latest/docs/ is back at little cost |
Description
This PR resolves issue:- #16520
Attached Screenshot for reference:-

Reviewers