Skip to content

Commit

Permalink
#561: Fixes issue with installation conditions that are pointers (#570)
Browse files Browse the repository at this point in the history
* #561: Fixes issue with installation conditions that are pointers not sending correctly

* #561: Changelog update
  • Loading branch information
dvanwinkle authored and steven-supersolid committed Nov 2, 2016
1 parent 9a72a8e commit 15e259b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
## Parse Dashboard Changelog

### NEXT RELEASE

* Fix: Can't send push to specific user (#561)

### 1.0.19

* New: Support for trusting proxies w/ HTTPS
Expand Down
Expand Up @@ -45,7 +45,7 @@ function compareValue(info, value, onChangeCompareTo) {
onChange={(_value) => {
let obj = new Parse.Object(info.targetClass);
obj.id = _value;
onChangeCompareTo(Parse._encode(obj));
onChangeCompareTo(Parse._encode(obj.toPointer()));
}}
ref={setFocus} />
case 'Boolean':
Expand Down

0 comments on commit 15e259b

Please sign in to comment.