From 5277456bca5d1084d39a4b6275c912a8b5631899 Mon Sep 17 00:00:00 2001 From: Diedra Rater Date: Thu, 16 Jun 2022 16:03:14 -0700 Subject: [PATCH] fix(table-object): fix behavior type updated in Table --- .../TableObject/TableObject.stories.tsx | 68 ++----------------- 1 file changed, 4 insertions(+), 64 deletions(-) diff --git a/src/upcoming-components/TableObject/TableObject.stories.tsx b/src/upcoming-components/TableObject/TableObject.stories.tsx index 390645447..8c3daf451 100644 --- a/src/upcoming-components/TableObject/TableObject.stories.tsx +++ b/src/upcoming-components/TableObject/TableObject.stories.tsx @@ -80,7 +80,7 @@ const Template: Story = (args) => ( ); -const OverflowLargeTemplate: Story = (args) => ( +const OverflowTemplate: Story = (args) => ( @@ -91,64 +91,7 @@ const OverflowLargeTemplate: Story = (args) => ( - - - Table heading - Table heading - Table heading - Table heading - - - - - Value - Value - - Value - Value - - - Value - Value - - Value - Value - - - Value - Value - - Value - Value - - - Value - Value - - Value - Value - - -
-
-
-); - -const OverflowSmallTemplate: Story = (args) => ( - - - - -
Toolbar Item
-
-
{' '} -
- - @@ -197,8 +140,5 @@ const OverflowSmallTemplate: Story = (args) => ( export const Default = Template.bind({}); Default.args = {}; -export const OverflowLarge = OverflowLargeTemplate.bind({}); -OverflowLarge.args = {}; - -export const OverflowSmall = OverflowSmallTemplate.bind({}); -OverflowSmall.args = {}; +export const Overflow = OverflowTemplate.bind({}); +Overflow.args = {};