Skip to content

Commit

Permalink
fix(taskcounter): return children when is toggleable
Browse files Browse the repository at this point in the history
  • Loading branch information
glrodasz committed Nov 9, 2021
1 parent ef9c5e3 commit 1e8d166
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions atoms/Button/Button.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ export const Button = ({
onClick={handleClick({ onClick })}
>
{addons && addons.prepend}

<Heading color={type === 'primary' ? 'inverted' : 'primary'}>
{children}
</Heading>

{addons && addons.append}
</button>
)
Expand Down
1 change: 1 addition & 0 deletions molecules/TaskCounter/TaskCounter.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export const TaskCounter = ({
</div>
<Spacer.Vertical size="xs" />
<Divider />
{children}
</div>
)
}
Expand Down
4 changes: 2 additions & 2 deletions molecules/TaskCounter/TaskCounter.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ export default {
args: {
title: 'Em Sméagol body.',
current: 2,
children:
"Fells defeated veins this. There and Back Again. A Hobbit's Tale. Loved lucky Istari difficult lay? Dale fellow's rioting. Blanket Misty Mountain started rival wriggles flatten convinced succumbed closing? Slug town fond pipe-weed flatten recognizes Goblins! Innards pouf admirable freely nothingness sleepless exactly afternoon cruelty Bofur? Craftsmen tested fair Alfrid gets figure words winter's field offer healed squash? These galumphing Grima tread mustn't seen melt ideal picked recover employment. Nazgûl alas luckiest?",
},
}

Expand All @@ -21,6 +23,4 @@ export const Toggleable = Template.bind({})
Toggleable.args = {
isToggleable: true,
total: 10,
children:
"Fells defeated veins this. There and Back Again. A Hobbit's Tale. Loved lucky Istari difficult lay? Dale fellow's rioting. Blanket Misty Mountain started rival wriggles flatten convinced succumbed closing? Slug town fond pipe-weed flatten recognizes Goblins! Innards pouf admirable freely nothingness sleepless exactly afternoon cruelty Bofur? Craftsmen tested fair Alfrid gets figure words winter's field offer healed squash? These galumphing Grima tread mustn't seen melt ideal picked recover employment. Nazgûl alas luckiest?",
}

0 comments on commit 1e8d166

Please sign in to comment.