[IMPLY-1767] fix popover direction (#9470)

This commit is contained in:
mcbrewster 2020-03-09 17:35:02 -07:00 committed by GitHub
parent da0ea627d0
commit a676d16226
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ export const FormGroupWithInfo = React.memo(function FormGroupWithInfo(
const { label, info, inlineInfo, children } = props;
const popover = (
<Popover content={info} position="left-bottom">
<Popover content={info} position="left-bottom" boundary={'viewport'}>
<Icon icon={IconNames.INFO_SIGN} iconSize={14} />
</Popover>
);