We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fda41e3 commit b64dac8Copy full SHA for b64dac8
src/Elastic.Markdown/IO/DocumentationSet.cs
@@ -59,7 +59,7 @@ public interface IPositionalNavigation
59
do
60
{
61
var next = NavigationIndexedByOrder.GetValueOrDefault(index + 1);
62
- if (next is not null && !next.Hidden)
+ if (next is not null && !next.Hidden && next.Url != currentNavigation.Url)
63
return next;
64
index++;
65
} while (index <= NavigationIndexedByOrder.Count - 1);
0 commit comments