This commit is contained in:
2024-07-06 23:23:18 +02:00
parent 20620cff41
commit 5a15c1a106
3 changed files with 13 additions and 7 deletions

View File

@@ -6,7 +6,7 @@ import PostTable, {
import {
GetPostsAttributes,
PostServerActions,
} from "@/app/lib/actions/entityManagement/post/postActions";
} from "@/app/lib/actions/entitymanagement/post/postActions";
import { EditorState } from "@/components/client/admin/PostEditor";
import { Project } from "@/models";
import { ReactNode, useState } from "react";

View File

@@ -8,11 +8,11 @@ import {
updatePost,
GetPostsAttributes,
PostServerActions,
} from "@/app/lib/actions/entityManagement/post/postActions";
import { getProjects } from "@/app/lib/actions/entityManagement/post/projectActions";
} from "@/app/lib/actions/entitymanagement/post/postActions";
import { getProjects } from "@/app/lib/actions/entitymanagement/post/projectActions";
import { Bucket, Project, Post, dbSync, Attachment } from "@/models";
import { handleActionResult } from "@/app/lib/actions/clientActionHandler";
import { CPostView } from "@/views/admin/post";
import { CPostView } from "@/components/views/admin/post";
type Props = {
children?: ReactNode;