Word (docx) Link problems

In our docx file, we have several types of links.

The first one is the link in the contents menu. When we click these links it is supposed to direct us to that specific topic, but instead of this, it opens a blank GroupdocswViewer page.
This is the content menu, (standard content menu at Word documents)
image.png (7.5 KB)

This is the URL when we hover on that link
image.png (2.2 KB)

And this is the blank page
image.png (4.9 KB)

.
Am I missing something, or is this a bug?

@Kuropetti

It is a bug. At the moment we don’t have fix for this issue except a workaround that you can use to unlink TOC links so they become not clickable.

using (var viewer = new Viewer("resume.docx"))
{
    // Convert the document to HTML.
    var viewOptions = HtmlViewOptions.ForEmbeddedResources();
    // Unlink table of contents.
    viewOptions.WordProcessingOptions.UnlinkTableOfContents = true;
    viewer.View(viewOptions);
}

See more details at Unlink table of contents.