We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fbcee7 commit 286269fCopy full SHA for 286269f
src/components/BrowserCell/BrowserCell.react.js
@@ -92,7 +92,7 @@ export default class BrowserCell extends Component {
92
this.copyableValue = this.props.value.id;
93
}
94
else if (this.props.type === 'Array') {
95
- if ( this.props.value[0] && typeof this.props.value[0] === 'object' && this.props.value[0].__type === 'Pointer' ) {
+ if ( this.props.value[0] && typeof this.props.value[0] === 'object' && this.props.value[0].__type === 'Pointer' && typeof this.props.onPointerClick === 'function' ) {
96
const array = [];
97
this.props.value.map( (v, i) => {
98
if ( typeof v !== 'object' || v.__type !== 'Pointer' ) {
0 commit comments