We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents db56dcd + 1f6c14b commit 45bfaa4Copy full SHA for 45bfaa4
1 file changed
app/components/dataPanel.tsx
@@ -35,16 +35,12 @@ const excludedProperties = [
35
36
export default function DataPanel({ obj, setObj, url }: Props) {
37
38
- debugger
39
-
40
if (!obj) return null;
41
42
const type = "category" in obj
43
const label = type ? `${obj.category}: ${obj.name}` : obj.label
44
const object = Object.entries(obj).filter(([k]) => !excludedProperties.includes(k))
45
46
- console.log(obj)
47
48
return (
49
<div data-name="node-details-panel" className="z-20 absolute -top-10 left-20 bg-[#343434] text-white shadow-lg rounded-lg flex flex-col max-h-[88%] max-w-[56%] overflow-hidden" >
50
<header className="bg-[#191919] flex items-center gap-8 justify-between p-8">
0 commit comments