Skip to content

Commit ac8e566

Browse files
committed
Update BrowserCell.react.js
1 parent 80d42a8 commit ac8e566

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/components/BrowserCell/BrowserCell.react.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ export default class BrowserCell extends Component {
208208
contentArray = []
209209
this.copyableValue = content;
210210
let classes = [styles.cell, unselectable];
211-
if (hidden) {
211+
if (hidden) {
212212
content = '(hidden)';
213213
classes.push(styles.empty);
214214
} else if (value === undefined) {
@@ -248,8 +248,6 @@ export default class BrowserCell extends Component {
248248
} else if (type === 'Boolean') {
249249
this.copyableValue = content = value ? 'True' : 'False';
250250
} else if (type === 'Array') {
251-
252-
253251
this.copyableValue = '';
254252
contentArray.push('[');
255253
for (var i=0;i<value.length;i++) {
@@ -297,8 +295,6 @@ export default class BrowserCell extends Component {
297295
}
298296
}
299297
contentArray.push(']');
300-
301-
302298
} else if (type === 'Object' || type === 'Bytes') {
303299
this.copyableValue = content = JSON.stringify(value);
304300
} else if (type === 'File') {

0 commit comments

Comments
 (0)