fix(tables): align sidebar dividers, disclosure spacing, and header height#5003
Conversation
…eight with the editor and page header
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
PR SummaryLow Risk Overview Headers: Shared Dividers: Introduces Reviewed by Cursor Bugbot for commit 747a975. Configure here. |
Greptile SummaryThis PR fixes three visual alignment issues in the table workflow sidebar: disclosure spacing, header height, and dashed divider consistency. The approach is clean and well-scoped.
Confidence Score: 5/5Pure visual/layout fixes with no data, state, or API logic touched — safe to merge. All changes are Tailwind class additions ( No files require special attention — the Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
FDL["DashedDividerLine\n(field-divider.tsx)\nSingle source of truth for\ndash pattern + h-[1.25px]"]
FD["FieldDivider\n(field-divider.tsx)\nrole=separator, spacing wrapper"]
FDL --> FD
subgraph Consumers using FieldDivider
SE["subflow-editor.tsx\nFieldDivider className='pb-2.5'"]
PE["preview-editor.tsx\nFieldDivider className='pb-2.5'"]
end
subgraph Consumers using DashedDividerLine directly
ED["editor.tsx\n4 inline disclosure flanks"]
WS["workflow-sidebar.tsx\n2 disclosure flanks + pb-1 to pb-3"]
end
FD --> SE
FD --> PE
FDL --> ED
FDL --> WS
subgraph Header alignment min-h-48px
RH["resource-header.tsx\nflex + items-center + min-h-48px"]
CC["column-config-sidebar.tsx\nmin-h-48px"]
ES["enrichments-sidebar.tsx\nmin-h-48px x2 render paths"]
EC["enrichment-config.tsx\nmin-h-48px"]
WH["workflow-sidebar.tsx\nmin-h-48px"]
end
Reviews (1): Last reviewed commit: "fix(tables): align sidebar dividers, dis..." | Re-trigger Greptile |
Summary
pb-1→pb-3— it was hugging the Workflow version row)DashedDividerLineprimitive infield-divider.tsx(emcn) — removes 4 drifting inline copies of the same gradient ineditor.tsx,workflow-sidebar.tsx,subflow-editor.tsx, andpreview-editor.tsx, so dash pattern and thickness can no longer diverge from the editormin-h-[48px], including the sharedResourceHeader, so the height no longer floats with contentType of Change
Testing
Tested manually. Typecheck and lint clean (pre-existing unrelated
tailwind.config.ts/codepipeline errors aside).Checklist