From d426361b75110bfc493c47d5c3402608c2b011e4 Mon Sep 17 00:00:00 2001 From: Arnaud Didry Date: Tue, 25 Sep 2018 18:52:50 +0200 Subject: [PATCH] Small typo fix in List doc --- docs/List.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/List.md b/docs/List.md index 371e417d3c2..d1937354568 100644 --- a/docs/List.md +++ b/docs/List.md @@ -89,6 +89,7 @@ import Button from '@material-ui/core/Button'; import { CardActions, CreateButton, ExportButton, RefreshButton } from 'react-admin'; const PostActions = ({ + bulkActions, basePath, currentSort, displayedFilters, @@ -101,7 +102,7 @@ const PostActions = ({ showFilter }) => ( - {bulkActions && cloneElement(bulkActions, { + {bulkActions && React.cloneElement(bulkActions, { basePath, filterValues, resource,