mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
direction prop fixed in storybook
This commit is contained in:
parent
4d56fa3b5a
commit
ed67a623b5
4 changed files with 4 additions and 4 deletions
|
|
@ -17,7 +17,7 @@ storiesOf('Multiselect', module).add('MultiselectMultipleValues', () => {
|
|||
return (
|
||||
<Multiselect
|
||||
className={styles['label-container']}
|
||||
direction={'bottom'}
|
||||
direction={'bottom-right'}
|
||||
title={'MultiselectMultipleValues'}
|
||||
options={[
|
||||
{ value: 'a', label: 'A' },
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ storiesOf('Multiselect', module).add('MultiselectNotAutoClosing', () => {
|
|||
return (
|
||||
<Multiselect
|
||||
className={styles['label-container']}
|
||||
direction={'bottom'}
|
||||
direction={'bottom-right'}
|
||||
title={'MultiselectNotAutoClosing'}
|
||||
options={[
|
||||
{ value: 'a', label: 'A' },
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ storiesOf('Multiselect', module).add('MultiselectSingleValue', () => {
|
|||
return (
|
||||
<Multiselect
|
||||
className={styles['label-container']}
|
||||
direction={'bottom'}
|
||||
direction={'bottom-right'}
|
||||
title={'MultiselectSingleValue'}
|
||||
options={[
|
||||
{ value: 'a', label: 'A' },
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ storiesOf('Popup', module).add('Popup', () => {
|
|||
return (
|
||||
<Popup
|
||||
open={menuOpen}
|
||||
direction={'bottom'}
|
||||
direction={'bottom-right'}
|
||||
renderLabel={({ className, children, ...props }) => (
|
||||
<Button {...props} className={classnames(className, styles['popup-label-container'])} onClick={popupLabelOnClick}>
|
||||
POPUP LABEL
|
||||
|
|
|
|||
Loading…
Reference in a new issue