I had a custom plugin working which would appear in the top-left dropdown menu and go to a view along the lines of:
site/plugins/example/index.js
panel.plugin("hello/example", {
views: {
test: {
label: "Test",
icon: "globe",
component: {
template: `
<k-view class="k-golive-view">
<k-header>
Hello
</k-header>
</k-view>
`,
}
}
}
})
I can’t pinpoint an exact moment but it appears that updating to 3.6 caused this to disappear and the plugin is no longer working. Did something change with how panel plugins are registered?