Before this change, if two top-level items had the same name, that name appeared twice in the left nav. For example, v1.Foo and v2.Foo both appeared as Foo, and the generated HTML used the id attribute Foo-nav for both items.
After this change, the left nav shows v1.Foo and v2.Foo instead, and their id attributes are v1.Foo-nav and v2.Foo-nav, respectively.
Before this change, if two top-level items had the same
name
, that name appeared twice in the left nav. For example,v1.Foo
andv2.Foo
both appeared asFoo
, and the generated HTML used theid
attributeFoo-nav
for both items.After this change, the left nav shows
v1.Foo
andv2.Foo
instead, and theirid
attributes arev1.Foo-nav
andv2.Foo-nav
, respectively.This issue was originally observed in the Cloud Tasks docs. I tested the fix with googleapis/nodejs-tasks and confirmed that it fixed the issue.