Skip to content

Commit

Permalink
fix: 修复helloworld,添加记录无效的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
greper committed May 4, 2023
1 parent 9b5af5d commit a3121f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/zh/guide/start/integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ const createCrudOptions = function ({ crudOptions, context }: CreateCrudOptionsP
const records = [{ id: 1, name: "Hello World", type: 1 }];
const pageRequest = async (query: UserPageQuery): Promise<UserPageRes> => {
return {
records,
records:[...records],
currentPage: 1,
pageSize: 20,
total: records.length
Expand Down

0 comments on commit a3121f5

Please sign in to comment.