From c885e2d29a3ef54bcd34b437aa4a72756582cbb8 Mon Sep 17 00:00:00 2001 From: atanasster Date: Fri, 10 Jul 2020 16:24:01 -0400 Subject: [PATCH] fix: action item node --- .../ActionContainer/ActionContainer.stories.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ui/components/src/ActionContainer/ActionContainer.stories.tsx b/ui/components/src/ActionContainer/ActionContainer.stories.tsx index 67b050bcf..ef4e7d9e0 100644 --- a/ui/components/src/ActionContainer/ActionContainer.stories.tsx +++ b/ui/components/src/ActionContainer/ActionContainer.stories.tsx @@ -13,11 +13,11 @@ export const overview = () => { console.log('clicked'), }, { - title: google, + node: google, onClick: () => console.log('clicked'), }, ]} @@ -31,12 +31,12 @@ export const order = () => ( console.log('clicked'), order: 1, }, { - title: google, + node: google, onClick: () => console.log('clicked'), order: 0, }, @@ -50,17 +50,17 @@ export const override = () => ( console.log('clicked'), id: 'copy', }, { - title: google, + node: google, onClick: () => console.log('clicked'), }, { //this will override the action above - title: 'Copy', + node: 'Copy', id: 'copy', }, ]}