diff --git a/plane-src/apps/web/ce/components/projects/external-contours/empty-state.tsx b/plane-src/apps/web/ce/components/projects/external-contours/empty-state.tsx index a005200..69a4d33 100644 --- a/plane-src/apps/web/ce/components/projects/external-contours/empty-state.tsx +++ b/plane-src/apps/web/ce/components/projects/external-contours/empty-state.tsx @@ -4,7 +4,7 @@ * See the LICENSE file for details. */ -import { Inbox } from "lucide-react"; +import { ViewVerticalStackIllustration, WorkItemVerticalStackIllustration } from "@plane/propel/empty-state"; import { cn } from "@plane/utils"; type Props = { @@ -15,15 +15,25 @@ type Props = { export const ExternalContoursEmptyState = (props: Props) => { const { title, description, compact = false } = props; + const Illustration = compact ? WorkItemVerticalStackIllustration : ViewVerticalStackIllustration; return ( -
-
- +
+
+
-
-

{title}

- {description &&

{description}

} +
+

{title}

+ {description && ( +

+ {description} +

+ )}
); diff --git a/plane-src/apps/web/ce/components/projects/external-contours/root.tsx b/plane-src/apps/web/ce/components/projects/external-contours/root.tsx index af4badf..625ba89 100644 --- a/plane-src/apps/web/ce/components/projects/external-contours/root.tsx +++ b/plane-src/apps/web/ce/components/projects/external-contours/root.tsx @@ -99,8 +99,9 @@ export const ExternalContoursRoot = observer(function ExternalContoursRoot(props inboxIssueId={inboxIssueId.toString()} /> ) : ( -
-
+
+
+