diff --git a/CHANGELOG.md b/CHANGELOG.md index 543ef0757..d5ebef30a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ - fix: date cell value not selected on double clicks (fn-faisal) [#1730](https://github.com/parse-community/parse-dashboard/pull/1730) ## Fixes +- Fixed bug when editing or copying a field containing an array of pointers [#1770](https://github.com/parse-community/parse-dashboard/issues/1770) (Prerna Mehra) [#1771](https://github.com/parse-community/parse-dashboard/pull/1771) # 2.2.0 [Full Changelog](https://github.com/parse-community/parse-dashboard/compare/2.1.0...2.2.0) diff --git a/src/components/BrowserCell/BrowserCell.react.js b/src/components/BrowserCell/BrowserCell.react.js index 29f399e3f..cfd1d329d 100644 --- a/src/components/BrowserCell/BrowserCell.react.js +++ b/src/components/BrowserCell/BrowserCell.react.js @@ -273,13 +273,18 @@ export default class BrowserCell extends Component { const object = new Parse.Object(v.className); object.id = v.objectId; array.push( - - - ); + + ); }); - this.copyableValue = content =