mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
removed absolute imports from rich-text-editor
This commit is contained in:
parent
0080880852
commit
95e5a30614
@ -1,4 +1,4 @@
|
||||
import "@/styles/github-dark.css";
|
||||
import "./styles/github-dark.css";
|
||||
|
||||
export { RichTextEditor, RichTextEditorWithRef } from "@/ui";
|
||||
export { RichReadOnlyEditor, RichReadOnlyEditorWithRef } from "@/ui/read-only";
|
||||
export { RichTextEditor, RichTextEditorWithRef } from "./ui";
|
||||
export { RichReadOnlyEditor, RichReadOnlyEditorWithRef } from "./ui/read-only";
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { Editor } from "@tiptap/core";
|
||||
import { Check, Trash } from "lucide-react";
|
||||
import { Dispatch, FC, SetStateAction, useCallback, useEffect, useRef } from "react";
|
||||
import isValidHttpUrl from "@/ui/menus/bubble-menu/utils";
|
||||
import isValidHttpUrl from "./utils";
|
||||
import { cn } from "@plane/editor-core";
|
||||
|
||||
interface LinkSelectorProps {
|
||||
|
@ -10,11 +10,6 @@
|
||||
"node_modules"
|
||||
],
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": [
|
||||
"src/*"
|
||||
]
|
||||
}
|
||||
"baseUrl": "."
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user