mirror of https://github.com/apache/druid.git
[IMPLY-1767] fix popover direction (#9470)
This commit is contained in:
parent
da0ea627d0
commit
a676d16226
|
@ -35,7 +35,7 @@ export const FormGroupWithInfo = React.memo(function FormGroupWithInfo(
|
||||||
const { label, info, inlineInfo, children } = props;
|
const { label, info, inlineInfo, children } = props;
|
||||||
|
|
||||||
const popover = (
|
const popover = (
|
||||||
<Popover content={info} position="left-bottom">
|
<Popover content={info} position="left-bottom" boundary={'viewport'}>
|
||||||
<Icon icon={IconNames.INFO_SIGN} iconSize={14} />
|
<Icon icon={IconNames.INFO_SIGN} iconSize={14} />
|
||||||
</Popover>
|
</Popover>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue