From 1798a829acdc84f561cb6257d7953f54fbe6b432 Mon Sep 17 00:00:00 2001 From: Anchel135 Date: Thu, 12 Dec 2024 15:44:17 +0200 Subject: [PATCH 01/45] align labels and give max width --- app/graph/labels.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/graph/labels.tsx b/app/graph/labels.tsx index d82896cc..3e6493a2 100644 --- a/app/graph/labels.tsx +++ b/app/graph/labels.tsx @@ -28,12 +28,12 @@ export default function Labels({ graph, categories, onClick, label, className = } return ( -
+
{ label &&

{label}

} -
+
{ isScrollable &&
+
+
) } \ No newline at end of file diff --git a/app/schema/SchemaView.tsx b/app/schema/SchemaView.tsx index 5e370244..4910dc1a 100644 --- a/app/schema/SchemaView.tsx +++ b/app/schema/SchemaView.tsx @@ -550,6 +550,7 @@ export default function SchemaView({ schema, fetchCount, data }: Props) { onExpand={onExpand} onSetAttributes={handelSetAttributes} onRemoveAttribute={handelRemoveProperty} + onDeleteElement={handelDeleteElement} /> : (isAddEntity || isAddRelation) && Date: Sun, 15 Dec 2024 15:22:34 +0200 Subject: [PATCH 05/45] add intercom --- app/components/GoogleAnalytics.tsx | 24 ++++++++++++++++++++++++ app/layout.tsx | 12 +++++++++++- 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 app/components/GoogleAnalytics.tsx diff --git a/app/components/GoogleAnalytics.tsx b/app/components/GoogleAnalytics.tsx new file mode 100644 index 00000000..955ac32c --- /dev/null +++ b/app/components/GoogleAnalytics.tsx @@ -0,0 +1,24 @@ +import Script from "next/script"; + +function GoogleAnalytics({ ga_id }: { ga_id: string }) { + return <> +