Skip to content

Commit 58081d8

Browse files
committed
minor #38 Fixed a minor error in the documentation about customizing entity fields (javiereguiluz)
This PR was merged into the master branch. Discussion ---------- Fixed a minor error in the documentation about customizing entity fields Commits ------- 947300d Fixed a minor error in the documentation about customizing entity fields
2 parents 44942fd + 947300d commit 58081d8

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

README.md

+10-5
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,8 @@ easy_admin:
253253
entities:
254254
Customer:
255255
class: AppBundle\Entity\Customer
256-
list: ['id', 'firstName', 'lastName', 'phone', 'email']
256+
list:
257+
fields: ['id', 'firstName', 'lastName', 'phone', 'email']
257258
# ...
258259
```
259260

@@ -270,7 +271,8 @@ easy_admin:
270271
entities:
271272
# this configuration IS NOT VALID. Use the configuration showed above
272273
Customer: AppBundle\Entity\Customer
273-
list: ['id', 'firstName', 'lastName', 'phone', 'email']
274+
list:
275+
fields: ['id', 'firstName', 'lastName', 'phone', 'email']
274276
# ...
275277
```
276278

@@ -289,7 +291,8 @@ easy_admin:
289291
entities:
290292
Customer:
291293
class: AppBundle\Entity\Customer
292-
list: ['id', 'name', 'phone', 'email']
294+
list:
295+
fields: ['id', 'name', 'phone', 'email']
293296
# ...
294297
```
295298

@@ -332,8 +335,10 @@ easy_admin:
332335
entities:
333336
Customer:
334337
class: AppBundle\Entity\Customer
335-
edit: ['firstName', 'secondName', 'phone', 'email']
336-
new: ['firstName', 'secondName', 'phone', 'email', 'creditLimit']
338+
edit:
339+
fields: ['firstName', 'secondName', 'phone', 'email']
340+
new:
341+
fields: ['firstName', 'secondName', 'phone', 'email', 'creditLimit']
337342
# ...
338343
```
339344

0 commit comments

Comments
 (0)