mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Signed-off-by: Roman <ixrock@gmail.com> Co-authored-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
14 lines
267 B
TypeScript
14 lines
267 B
TypeScript
import { LensMainExtension } from "@k8slens/extensions";
|
|
|
|
export default class SupportPageMainExtension extends LensMainExtension {
|
|
appMenus = [
|
|
{
|
|
parentId: "help",
|
|
label: "Support",
|
|
click: () => {
|
|
this.navigate();
|
|
}
|
|
}
|
|
]
|
|
}
|