Skip to content

Commit 4f7e7b4

Browse files
committed
Warning fix
1 parent 1edf421 commit 4f7e7b4

File tree

2 files changed

+161
-178
lines changed

2 files changed

+161
-178
lines changed

powerapps-docs/developer/component-framework/issues-and-workarounds.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -91,17 +91,17 @@ Here are some common issues that you might come across while using the Power App
9191

9292
Use the dataset column name (component can get the dataset column name by searching the column array using the alias).
9393

94-
***Expected Behavior***
94+
***Expected Behavior***
9595

96-
```TypeScript
97-
long = dataSet.records[currentRecordId].getValue("Longitude") //based on property set in manifest"-122.3514661"
98-
```
96+
```TypeScript
97+
long = dataSet.records[currentRecordId].getValue("Longitude") //based on property set in manifest"-122.3514661"
98+
```
9999

100-
***Current Workaround***
100+
***Current Workaround***
101101

102-
```TypeScript
103-
lat = dataSet.records[currentRecordId].getValue("Address_x0020_1_x003a__x0020_Latitude")//based on the dataset column name
104-
```
102+
```TypeScript
103+
lat = dataSet.records[currentRecordId].getValue("Address_x0020_1_x003a__x0020_Latitude")//based on the dataset column name
104+
```
105105

106106
6. **Power Apps component framework Datasets SharePoint issue**
107107

0 commit comments

Comments
 (0)