chore: move version history editor to edition specific structure (#5441)
This commit is contained in:
parent
23dcdd6407
commit
b22bdef9e1
5 changed files with 4 additions and 3 deletions
|
|
@ -1,2 +1,3 @@
|
||||||
export * from "./editor";
|
export * from "./editor";
|
||||||
|
export * from "./version";
|
||||||
export * from "./extra-actions";
|
export * from "./extra-actions";
|
||||||
|
|
|
||||||
1
web/ce/components/pages/version/index.ts
Normal file
1
web/ce/components/pages/version/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
export * from "./editor";
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
export * from "./editor";
|
|
||||||
export * from "./main-content";
|
export * from "./main-content";
|
||||||
export * from "./root";
|
export * from "./root";
|
||||||
export * from "./sidebar-list-item";
|
export * from "./sidebar-list-item";
|
||||||
|
|
|
||||||
|
|
@ -6,10 +6,10 @@ import { TriangleAlert } from "lucide-react";
|
||||||
import { TPageVersion } from "@plane/types";
|
import { TPageVersion } from "@plane/types";
|
||||||
// plane ui
|
// plane ui
|
||||||
import { Button, setToast, TOAST_TYPE } from "@plane/ui";
|
import { Button, setToast, TOAST_TYPE } from "@plane/ui";
|
||||||
// components
|
|
||||||
import { PagesVersionEditor } from "@/components/pages";
|
|
||||||
// helpers
|
// helpers
|
||||||
import { renderFormattedDate, renderFormattedTime } from "@/helpers/date-time.helper";
|
import { renderFormattedDate, renderFormattedTime } from "@/helpers/date-time.helper";
|
||||||
|
// plane web components
|
||||||
|
import { PagesVersionEditor } from "@/plane-web/components/pages";
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
activeVersion: string | null;
|
activeVersion: string | null;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue