fix: change content props in tippy()
This commit is contained in:
parent
64e0d7468d
commit
0281bacda8
1 changed files with 1 additions and 1 deletions
|
|
@ -109,7 +109,7 @@ function createSuggestionRenderer(component: Component): SuggestionOptions['rend
|
||||||
popup = tippy(document.body, {
|
popup = tippy(document.body, {
|
||||||
getReferenceClientRect: props.clientRect as GetReferenceClientRect,
|
getReferenceClientRect: props.clientRect as GetReferenceClientRect,
|
||||||
appendTo: () => document.body,
|
appendTo: () => document.body,
|
||||||
content: renderer.element,
|
content: renderer.renderedComponent.el!,
|
||||||
showOnCreate: true,
|
showOnCreate: true,
|
||||||
interactive: true,
|
interactive: true,
|
||||||
trigger: 'manual',
|
trigger: 'manual',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue