refs #14265 Merge branch 'origin/14265-search-bar-icon'
[arvados-workbench2.git] / src / store / tree-picker / tree-picker-actions.ts
index 97f72d6437a8f720ead158b289ea3f028fea111a..5b04389af6850888a3bad224dc11fc507005d5e3 100644 (file)
@@ -11,6 +11,7 @@ export const treePickerActions = unionize({
     LOAD_TREE_PICKER_NODE_SUCCESS: ofType<{ nodeId: string, nodes: Array<TreePickerNode>, pickerId: string }>(),
     TOGGLE_TREE_PICKER_NODE_COLLAPSE: ofType<{ nodeId: string, pickerId: string }>(),
     TOGGLE_TREE_PICKER_NODE_SELECT: ofType<{ nodeId: string, pickerId: string }>(),
+    EXPAND_TREE_PICKER_NODES: ofType<{ nodeIds: string[], pickerId: string }>(),
     RESET_TREE_PICKER: ofType<{ pickerId: string }>()
 });