We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76760f5 commit 58dba76Copy full SHA for 58dba76
src/components/BrowserCell/BrowserCell.react.js
@@ -99,12 +99,13 @@ class BrowserCell extends Component {
99
<Pill key={i} value={v.objectId} onClick={this.props.onPointerClick.bind(undefined, object)} followClick={true} />
100
);
101
});
102
- this.copyableValue = content = <ul>
+ content = <ul>
103
{ array.map( a => <li>{a}</li>) }
104
</ul>
105
if ( array.length > 1 ) {
106
classes.push(styles.hasMore);
107
}
108
+ this.copyableValue = JSON.stringify(this.props.value);
109
110
else {
111
this.copyableValue = content = JSON.stringify(this.props.value);
0 commit comments