Skip to content

Commit 8bd6a2a

Browse files
author
Dan VanWinkle
committed
parse-community#561: Fixes issue with installation conditions that are pointers not sending correctly
1 parent 4e9c5b0 commit 8bd6a2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)