File tree 1 file changed +1
-5
lines changed
src/components/BrowserCell
1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ export default class BrowserCell extends Component {
208
208
contentArray = [ ]
209
209
this . copyableValue = content ;
210
210
let classes = [ styles . cell , unselectable ] ;
211
- if ( hidden ) {
211
+ if ( hidden ) {
212
212
content = '(hidden)' ;
213
213
classes . push ( styles . empty ) ;
214
214
} else if ( value === undefined ) {
@@ -248,8 +248,6 @@ export default class BrowserCell extends Component {
248
248
} else if ( type === 'Boolean' ) {
249
249
this . copyableValue = content = value ? 'True' : 'False' ;
250
250
} else if ( type === 'Array' ) {
251
-
252
-
253
251
this . copyableValue = '' ;
254
252
contentArray . push ( '[' ) ;
255
253
for ( var i = 0 ; i < value . length ; i ++ ) {
@@ -297,8 +295,6 @@ export default class BrowserCell extends Component {
297
295
}
298
296
}
299
297
contentArray . push ( ']' ) ;
300
-
301
-
302
298
} else if ( type === 'Object' || type === 'Bytes' ) {
303
299
this . copyableValue = content = JSON . stringify ( value ) ;
304
300
} else if ( type === 'File' ) {
You can’t perform that action at this time.
0 commit comments