Skip to content

Commit

Permalink
fixing typo lines 122 and 123 flexItem.tsx
Browse files Browse the repository at this point in the history
Signed-off-by: Samuel Valdes Gutierrez <valdesgutierrez@gmail.com>
  • Loading branch information
BigSamu committed Nov 1, 2023
1 parent 3eb7413 commit 428ef63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/flex/flex_item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ export const OuiFlexItem: FunctionComponent<
? SHRINK_SIZES.indexOf(shrink) >= 0
: undefined,
[`ouiFlexItem--flexBasis${basis}`]:
typeof shrink === 'string'
? BASIS_VALUES.indexOf(shrink) >= 0
typeof basis === 'string'
? BASIS_VALUES.indexOf(basis) >= 0
: undefined,
},
className
Expand Down

0 comments on commit 428ef63

Please sign in to comment.