Skip to content

Commit 18ad21e

Browse files
committed
chore(grid): fix Inline Grid example
1 parent 146c328 commit 18ad21e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/grid/editing/inline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Use the command buttons to control the CUD operations.
133133
134134
public static async Task Create(SampleData itemToInsert)
135135
{
136-
itemToInsert.Id = _data.Count + 1;
136+
itemToInsert.ID = _data.Count + 1;
137137
_data.Insert(0, itemToInsert);
138138
}
139139

0 commit comments

Comments
 (0)