Skip to content

Commit

Permalink
chore: move version history editor to edition specific structure (#5441)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaryan610 authored Aug 27, 2024
1 parent 23dcdd6 commit b22bdef
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions web/ce/components/pages/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from "./editor";
export * from "./version";
export * from "./extra-actions";
File renamed without changes.
1 change: 1 addition & 0 deletions web/ce/components/pages/version/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "./editor";
1 change: 0 additions & 1 deletion web/core/components/pages/version/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
export * from "./editor";
export * from "./main-content";
export * from "./root";
export * from "./sidebar-list-item";
Expand Down
4 changes: 2 additions & 2 deletions web/core/components/pages/version/main-content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b22bdef

Please sign in to comment.