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 690232b commit 3c66ec3Copy full SHA for 3c66ec3
src/Elastic.Markdown/IO/Navigation/DocumentationGroup.cs
@@ -198,8 +198,7 @@ protected DocumentationGroup(
198
GroupsInOrder = groups;
199
FilesInOrder = files;
200
NavigationItems = navigationItems;
201
- Id = Convert.ToHexString(SHA256.HashData(Encoding.UTF8.GetBytes(FolderName + depth)))[..8];
202
-
+ Id = Convert.ToHexString(SHA256.HashData(Encoding.UTF8.GetBytes(NavigationSource + FolderName + depth)))[..8];
203
if (Index is not null)
204
FilesInOrder = [.. FilesInOrder.Except([Index])];
205
}
0 commit comments