mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-08-28 21:27:14 +00:00
perf: add helpLink for each page
This commit is contained in:
@@ -6,6 +6,7 @@ export interface ISidebarChildVO {
|
||||
name: string;
|
||||
route: string;
|
||||
description: string;
|
||||
helpLink: string;
|
||||
}
|
||||
|
||||
export class SidebarChildVO {
|
||||
@@ -14,6 +15,7 @@ export class SidebarChildVO {
|
||||
name: string;
|
||||
route: string;
|
||||
description: string;
|
||||
helpLink: string;
|
||||
|
||||
constructor(props: ISidebarChildVO) {
|
||||
this.id = props.id;
|
||||
@@ -21,6 +23,7 @@ export class SidebarChildVO {
|
||||
this.name = props.name;
|
||||
this.route = props.route;
|
||||
this.description = props.description;
|
||||
this.helpLink = props.helpLink;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user