We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8761d3a commit 8985a88Copy full SHA for 8985a88
src/frontend/src/coral/components/Panels/PanelLeftToolbar.tsx
@@ -7,7 +7,7 @@ interface PanelLeftToolbarProps {
7
panelIcon?: ReactNode;
8
panelTitle?: string | null;
9
linkTo?: string;
10
- onTitleClick?: () => void; // Custom click handler for protected navigation
+ onTitleClick?: () => void;
11
children?: ReactNode;
12
}
13
src/frontend/src/models/planPanelLeft.tsx
@@ -8,5 +8,5 @@ export interface PlanPanelLefProps {
onTeamUpload?: () => Promise<void>;
isHomePage: boolean;
selectedTeam?: TeamConfig | null;
- onNavigationWithAlert?: (navigationFn: () => void) => void; // Function to handle protected navigation
+ onNavigationWithAlert?: (navigationFn: () => void) => void;
0 commit comments