Skip to content

Commit

Permalink
touchup: separate indicators for edge cells
Browse files Browse the repository at this point in the history
nice to have content indicators on separate line to match how
nodes have them separated.

but this makes common indicators shift off center which may be awkward.

not 100% sure if this is better but can revert if it seems worse
  • Loading branch information
keyserj committed Sep 12, 2024
1 parent eebff52 commit 43f6b4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/topic/components/CriteriaTable/EdgeCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Edge } from "@/web/topic/utils/graph";

export const EdgeCell = ({ edge }: { edge: Edge }) => {
return (
<div className="flex h-full items-center justify-center">
<div className="flex h-full flex-col items-center justify-center">
<CommonIndicators graphPartId={edge.id} notes={edge.data.notes} />
<ContentIndicators
className="ml-0"
Expand Down

0 comments on commit 43f6b4c

Please sign in to comment.