File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -320,7 +320,7 @@ blockquote footer:before {
320320.cm-s-default .cm-comment {color : # 740 ;}
321321.cm-s-default .cm-string , .sandbox-output-string {color : # 700 ;}
322322.cm-s-default .cm-string-2 {color : # 740 ;}
323- .cm-s-default .cm-tag {color : # 170 ;}
323+ .cm-s-default .cm-tag , . sandbox-output-symbol {color : # 170 ;}
324324
325325.CodeMirror {
326326 height : auto;
Original file line number Diff line number Diff line change 328328 if ( typeof val == "boolean" ) return span ( "bool" , String ( val ) )
329329 if ( typeof val == "number" ) return span ( "number" , String ( val ) )
330330 if ( typeof val == "string" ) return span ( "string" , JSON . stringify ( val ) )
331+ if ( typeof val == "symbol" ) return span ( "symbol" , String ( val ) )
331332 if ( val == null ) return span ( "null" , String ( val ) )
332333 if ( Array . isArray ( val ) ) return representArray ( val , space )
333334 else return representObj ( val , space )
You can’t perform that action at this time.
0 commit comments