tooltip
tooltip copied to clipboard
when set adjustY: false and the trigger node has no enough space, page stop responding
The tooltips props is:
align={{
points: ['tl', 'bl'],
overflow: {adjustX: true, adjustY: false},
}}
onPopupAlign={(dom, al) => {
dom.scrollIntoView(false);
}}
When i scroll page let the trigger node near the bottom of the browser, and the trigger node is the last element of the page, then i click the trigger node want the tooltips show up, but the page stop responding.
I doubt it's happened because there is no enough space to show the tooltips, help please.