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
3 changes: 3 additions & 0 deletions content/docs/ui/forms.mdx
Original file line numberDiff line numberDiff line change
Expand Up@@ -66,6 +66,7 @@ export default defineView({
data: { provider: 'object', object: 'lead' },
sections: [
{
name: 'about_you',
label: 'Tell us about yourself',
columns: 2,
fields: [
Expand DownExpand Up@@ -242,6 +243,7 @@ entry in `sections[].fields[]` (declarable since #7467):

```ts
sections: [{
name: 'about_you',
label: 'About you',
fields: [
'company',
Expand DownExpand Up@@ -326,6 +328,7 @@ export default defineView({
data: { provider: 'object', object: 'lead' },
sections: [
{
name: 'lead',
label: 'Lead',
columns: 2,
fields: [
Expand Down
2 changes: 2 additions & 0 deletions content/docs/ui/views.mdx
Original file line numberDiff line numberDiff line change
Expand Up@@ -350,6 +350,7 @@ formViews: {
data: { provider: 'object', object: 'task' },
sections: [
{
name: 'basic_information',
label: 'Basic Information',
columns: 2,
fields: [
Expand All@@ -361,6 +362,7 @@ formViews: {
],
},
{
name: 'details',
label: 'Details',
collapsible: true,
columns: 1,
Expand Down
Loading