Skip to content

Commit 15e259b

Browse files
dvanwinklesteven-supersolid
authored andcommitted
#561: Fixes issue with installation conditions that are pointers (#570)
* #561: Fixes issue with installation conditions that are pointers not sending correctly * #561: Changelog update
1 parent 9a72a8e commit 15e259b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Parse Dashboard Changelog
22

3+
### NEXT RELEASE
4+
5+
* Fix: Can't send push to specific user (#561)
6+
37
### 1.0.19
48

59
* New: Support for trusting proxies w/ HTTPS

src/components/PushAudienceDialog/InstallationCondition.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function compareValue(info, value, onChangeCompareTo) {
4545
onChange={(_value) => {
4646
let obj = new Parse.Object(info.targetClass);
4747
obj.id = _value;
48-
onChangeCompareTo(Parse._encode(obj));
48+
onChangeCompareTo(Parse._encode(obj.toPointer()));
4949
}}
5050
ref={setFocus} />
5151
case 'Boolean':

0 commit comments

Comments
 (0)