- 
    Type:Bug Report 
- 
    Resolution: Fixed
- 
    Priority:L3 - Default 
- 
    Affects Version/s: 7.14.4, 7.15.0-alpha3
- 
    Component/s: None
- 
    None
Description (Required on creation; please attach any relevant screenshots, stacktraces, log files, etc. to the ticket):
When creating a navigation plugin according to our documentation: https://docs.camunda.org/manual/7.14/webapps/cockpit/extend/plugins/#navigation, it does not appear
Steps to reproduce (Required on creation):
Include the following Plugin:
const navLink = { id: "customPlugin", pluginPoint: 'cockpit.navigation', priority: 10, render: (node) => { node.innerHTML = '<a href="#/path">Hello</a>' }, properties: { path: 'path' } }
Observed Behavior (Required on creation):
No Navigation link is shown
Expected behavior (Required on creation):
A Navigation option titled "Hello" is shown
Root Cause (Required on prioritization):
We reverted our rendering of the Header and did not Take the new Plugin interface into account
Hints (Optional):
Version 7.14.3 works fine
Make sure that the fix also allows the highlighting according to the documentation (`/path`)