Skip to content

Commit

Permalink
Merge branch 'main' into 6263
Browse files Browse the repository at this point in the history
  • Loading branch information
devadula-nandan authored Oct 30, 2024
2 parents ce52b62 + 17aeb86 commit e532c98
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const blockClass = `${pkg.prefix}--datagrid__row-size`;
const RowSizeDropdown = ({
align = 'bottom-right',
legendText = 'Row settings',
autoAlign,
...props
}) => {
const radioGroupRef = useRef(undefined);
Expand Down Expand Up @@ -63,6 +64,7 @@ const RowSizeDropdown = ({
className={`${blockClass}-options-container`}
onKeyDown={onKeyHandler}
onBlur={onBlurHandler}
autoAlign={autoAlign}
>
<IconButton
align={align}
Expand Down Expand Up @@ -90,6 +92,7 @@ const RowSizeDropdown = ({

RowSizeDropdown.propTypes = {
align: IconButton.propTypes.align,
autoAlign: PropTypes.bool,
datagridName: PropTypes.string,
legendText: PropTypes.string,
light: PropTypes.bool,
Expand Down

0 comments on commit e532c98

Please sign in to comment.