From a96f55dff6ab59a5ed992e1c04852ce5673808e5 Mon Sep 17 00:00:00 2001 From: waleed Date: Sat, 4 Jul 2026 19:17:02 -0700 Subject: [PATCH] fix(compare): render two already-populated fact rows that were missing from the table dataTables and richTextEditor are required fact fields, already researched and filled in for Sim and every competitor, but neither was ever added to the row list the table actually renders. --- apps/sim/app/(landing)/comparison/comparison-sections.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/sim/app/(landing)/comparison/comparison-sections.ts b/apps/sim/app/(landing)/comparison/comparison-sections.ts index 3943cfef557..5c534486c9b 100644 --- a/apps/sim/app/(landing)/comparison/comparison-sections.ts +++ b/apps/sim/app/(landing)/comparison/comparison-sections.ts @@ -67,6 +67,8 @@ export const COMPARISON_SECTIONS: ComparisonSectionDef[] = [ { key: 'versionControlDepth', label: 'Version control' }, { key: 'realtimeCollaboration', label: 'Realtime collaboration' }, { key: 'nativeFileStorage', label: 'Native file storage' }, + { key: 'dataTables', label: 'Native data tables' }, + { key: 'richTextEditor', label: 'Rich-text document editor' }, { key: 'subWorkflows', label: 'Sub-workflows (composition)' }, ], }),