Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/docs/guides/data-modeling.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const MyObject = ObjectSchema.create({
| `icon` | string | Icon identifier | `'building'` |
| `description` | string | Help text | `'Companies...'` |
| `titleFormat` | string | Record title template (`{{record.field}}` interpolation) | `'{{record.name}} - {{record.id}}'` |
| `highlightFields` | string[] | Most-important fields, in priority order (default columns, cards, previews, detail highlight strip; ADR-0085 — formerly `compactLayout`, still accepted as an alias) | `['name', 'status']` |
| `highlightFields` | string[] | Most-important fields, in priority order (default columns, cards, previews, detail highlight strip; ADR-0085 — formerly `compactLayout`; the old spelling was retired and is now rejected) | `['name', 'status']` |

### Enable Features

Expand Down
2 changes: 1 addition & 1 deletion content/docs/guides/metadata/object.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const Account = ObjectSchema.create({
| :--- | :--- | :--- | :--- |
| `displayNameField` | `string` | optional | Field used as record display name (defaults to `'name'`) |
| `titleFormat` | `string` | optional | Title expression (e.g. `'{name} - {code}'`) |
| `highlightFields` | `string[]` | optional | Most-important fields in priority order — default list columns, cards, previews, detail highlight strip (ADR-0085; formerly `compactLayout`, accepted as an alias) |
| `highlightFields` | `string[]` | optional | Most-important fields in priority order — default list columns, cards, previews, detail highlight strip (ADR-0085; formerly `compactLayout` — the old spelling was retired and is now rejected) |
| `stageField` | `string \| false` | optional | Linear lifecycle field; `false` declares the status field non-linear and suppresses stage heuristics (ADR-0085) |
| `recordName` | `object` | optional | Record name auto-generation config |

Expand Down