Skip to content

Commit c87f0aa

Browse files
bosonfootVesaJuvonen
authored andcommitted
Update column-formatting.md (SharePoint#1071)
Fixing one more instance of a capitalized ".Title" attribute that should be ".title"
1 parent 96bec1d commit c87f0aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/declarative-customization/column-formatting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ The simplest column formatting is one that places the value of the field inside
4949
"txtContent": "@currentField"
5050
}
5151
```
52-
Some field types require a bit of extra work to retrieve their values. Person fields are represented in the system as objects, and a person’s display name is contained within that object’s **Title** property. This is the same example, modified to work with the person field.
52+
Some field types require a bit of extra work to retrieve their values. Person fields are represented in the system as objects, and a person’s display name is contained within that object’s **title** property. This is the same example, modified to work with the person field.
5353

5454
```JSON
5555
{
5656
"elmType": "div",
57-
"txtContent": "@currentField.Title"
57+
"txtContent": "@currentField.title"
5858
}
5959
```
6060
Lookup fields are also represented as objects; the display text is stored in the **lookupValue** property. This example works with a lookup field.

0 commit comments

Comments
 (0)