chore: move version history editor to edition specific structure (#5441)

This commit is contained in:
Aaryan Khandelwal
2024-08-27 19:50:07 +05:30
committed by GitHub
parent 23dcdd6407
commit b22bdef9e1
5 changed files with 4 additions and 3 deletions

View File

@@ -1,2 +1,3 @@
export * from "./editor";
export * from "./version";
export * from "./extra-actions";

View File

@@ -0,0 +1 @@
export * from "./editor";

View File

@@ -1,4 +1,3 @@
export * from "./editor";
export * from "./main-content";
export * from "./root";
export * from "./sidebar-list-item";

View File

@@ -6,10 +6,10 @@ import { TriangleAlert } from "lucide-react";
import { TPageVersion } from "@plane/types";
// plane ui
import { Button, setToast, TOAST_TYPE } from "@plane/ui";
// components
import { PagesVersionEditor } from "@/components/pages";
// helpers
import { renderFormattedDate, renderFormattedTime } from "@/helpers/date-time.helper";
// plane web components
import { PagesVersionEditor } from "@/plane-web/components/pages";
type Props = {
activeVersion: string | null;