Skip to content

Commit 2ff2c4a

Browse files
authored
Merge pull request #10753 from notz/patch-1
fix: Typo in disabled choices example
2 parents dc15412 + 0db363d commit 2ff2c4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/SelectInput.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ You can render some options as disabled by setting the `disabled` field in some
107107
const choices = [
108108
{ id: 'tech', name: 'Tech' },
109109
{ id: 'lifestyle', name: 'Lifestyle' },
110-
{ id: 'people', name: 'People', disable: true },
110+
{ id: 'people', name: 'People', disabled: true },
111111
];
112112
<SelectInput source="author_id" choices={choices} />
113113
```

0 commit comments

Comments
 (0)