Skip to content

Commit

Permalink
Add more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
weltenwort committed May 28, 2021
1 parent ef44d0b commit 6f4a7de
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@ import { combineLatest, Observable, ReplaySubject } from 'rxjs';
import { map, scan, shareReplay, switchMap } from 'rxjs/operators';

export interface NavigationSection {
// the label of the section, should be translated
label: string | undefined;
// the key to sort by in ascending order relative to other entries
sortKey: number;
// the entries to render inside the section
entries: NavigationEntry[];
}

export interface NavigationEntry {
// the label of the menu entry, should be internationalized
// the label of the menu entry, should be translated
label: string;
// the kibana app id
app: string;
Expand Down

0 comments on commit 6f4a7de

Please sign in to comment.