Skip to content

Commit

Permalink
fix attribute name
Browse files Browse the repository at this point in the history
  • Loading branch information
AviAvni committed Apr 21, 2024
1 parent ba74aa9 commit 1d50241
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/graph/DataPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const excludedProperties = new Set([
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export default function DataPanel({ object }: Props) {
const rowClass = "dark:hover:bg-slate-700 hover:bg-gray-400 border-y-[1px] border-y-gray-700"
const type = object.sucre ? "edge" : "node"
const type = object.source ? "edge" : "node"
return (
<Table>
<TableCaption>{type} properties</TableCaption>
Expand Down

0 comments on commit 1d50241

Please sign in to comment.