File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/svelte/src/internal/client/dev Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -24,15 +24,15 @@ function log_expressions(expressions) {
2424 // eslint-disable-next-line no-console
2525 console . groupCollapsed (
2626 `%c${ label } %c${ time . toFixed ( 2 ) } ms` ,
27- ! changed ? 'color: darkgrey; font-weight: normal' : undefined ,
27+ ! changed ? 'color: darkgrey; font-weight: normal' : 'font-weight: bold' ,
2828 'color: grey' ,
2929 val && typeof val === 'object' && STATE_SYMBOL in val ? snapshot ( val , true ) : val
3030 ) ;
3131 } else {
3232 // eslint-disable-next-line no-console
3333 console . groupCollapsed (
3434 `%c${ label } ` ,
35- ! changed ? 'color: darkgrey; font-weight: normal' : undefined ,
35+ ! changed ? 'color: darkgrey; font-weight: normal' : 'font-weight: bold' ,
3636 val && typeof val === 'object' && STATE_SYMBOL in val ? snapshot ( val , true ) : val
3737 ) ;
3838 }
You can’t perform that action at this time.
0 commit comments