refs #13573 Merge branch '13753-favorites-view'
[arvados-workbench2.git] / src / components / side-panel / side-panel.tsx
index 6a579e8c4e5b4090e6555dadb078aabd1c9de42d..de6b3c8149faa99a8cb83362a39a25dd186b2aa3 100644 (file)
@@ -10,6 +10,7 @@ import { List, ListItem, ListItemIcon, Collapse } from "@material-ui/core";
 import { SidePanelRightArrowIcon, IconType } from '../icon/icon';
 import * as classnames from "classnames";
 import { ListItemTextIcon } from '../list-item-text-icon/list-item-text-icon';
+import { Dispatch } from "redux";
 
 type CssRules = 'active' | 'row' | 'root' | 'list' | 'iconClose' | 'iconOpen' | 'toggableIconContainer' | 'toggableIcon';
 
@@ -58,6 +59,7 @@ export interface SidePanelItem {
     open?: boolean;
     margin?: boolean;
     openAble?: boolean;
+    activeAction?: (dispatch: Dispatch) => void;
 }
 
 interface SidePanelDataProps {