File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
src/components/BrowserCell Expand file tree Collapse file tree 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 {
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' ) {
You can’t perform that action at this time.
0 commit comments