mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 13:29:56 +02:00
fix: issue embed popup (#1059)
This commit is contained in:
committed by
GitHub
parent
b4811d8547
commit
1299005de6
@@ -139,7 +139,8 @@ export const IssueListRenderer = (searchCallback: (searchQuery: string) => Promi
|
||||
|
||||
return {
|
||||
onStart: (props: { editor: Editor; clientRect?: (() => DOMRect | null) | null }) => {
|
||||
const tippyContainer = document.querySelector(".active-editor") ?? document.querySelector("#editor-container");
|
||||
const tippyContainer =
|
||||
document.querySelector(".active-editor") ?? document.querySelector('[id^="editor-container"]');
|
||||
|
||||
component = new ReactRenderer(IssueSuggestionList, {
|
||||
props: {
|
||||
|
||||
Reference in New Issue
Block a user