Skip to content

Commit e10173c

Browse files
committed
fix(compare): avoid accidental boolean-icon misparse from copy tightening
Three facts whose tightened wording started with a bare 'No ' now matched the Yes/No boolean-icon convention (parseFactValue), collapsing a nuanced 'Partial' or plain descriptive sentence into a bare X icon. Rephrase with 'Not'/'not' so these render as full text again, matching pre-edit behavior.
1 parent bacbc72 commit e10173c

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/sim/lib/compare/data/competitors/claude-cowork.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export const claudeCoworkProfile: CompetitorProfile = {
218218
sources: [],
219219
},
220220
versionControlDepth: {
221-
value: 'No native version control',
221+
value: 'Not documented, no native version control',
222222
detail:
223223
'Plugins and skills are file-based (SKILL.md and package files), so a user could track them in an external VCS, but there is no built-in versioning, diffing, or rollback for tasks or plugins.',
224224
shortValue: 'No native version control',

apps/sim/lib/compare/data/competitors/make.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ export const makeProfile: CompetitorProfile = {
435435
],
436436
},
437437
naturalLanguageBuilding: {
438-
value: 'No native, officially-branded feature',
438+
value: 'Not a native, officially-branded feature',
439439
detail:
440440
"Natural-language scenario creation is available only through third-party/unofficial MCP servers (e.g., community 'make-mcp-server') feeding prompts to external AI assistants like Claude or Cursor, plus Make's own MCP Server letting external agents call Make scenarios as tools. Make has no first-party 'type a prompt, Make builds the scenario' copilot feature.",
441441
shortValue: 'No native prompt-to-scenario copilot',

apps/sim/lib/compare/data/competitors/retool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ export const retoolProfile: CompetitorProfile = {
296296
},
297297
richTextEditor: {
298298
value:
299-
"No true WYSIWYG editing: Retool's Rich Text Editor component lets users type HTML-formatted text, and a separate Text component displays Markdown, but neither is a full WYSIWYG Markdown editor. Community members have built custom components (based on the CKEditor library) to get true WYSIWYG Markdown editing.",
299+
"Not true WYSIWYG editing: Retool's Rich Text Editor component lets users type HTML-formatted text, and a separate Text component displays Markdown, but neither is a full WYSIWYG Markdown editor. Community members have built custom components (based on the CKEditor library) to get true WYSIWYG Markdown editing.",
300300
detail:
301301
'Multiple long-running Retool forum feature requests ask for WYSIWYG markdown editing, still unresolved.',
302302
shortValue: 'No, native editor is HTML-input, not WYSIWYG markdown',

0 commit comments

Comments
 (0)