File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
workbench/contrib/markers/browser Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ export class MarkerList {
4747 this . _resourceFilter = resourceFilter ;
4848 }
4949
50- const compareOrder = this . _configService . getValue < string > ( 'problems.compareOrder ' ) ;
50+ const compareOrder = this . _configService . getValue < string > ( 'problems.sortOrder ' ) ;
5151 const compareMarker = ( a : IMarker , b : IMarker ) : number => {
5252 let res = compare ( a . resource . toString ( ) , b . resource . toString ( ) ) ;
5353 if ( compareOrder === 'position' ) {
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ Registry.as<IConfigurationRegistry>(Extensions.Configuration).registerConfigurat
101101 'type' : 'boolean' ,
102102 'default' : false
103103 } ,
104- 'problems.compareOrder ' : {
104+ 'problems.sortOrder ' : {
105105 'description' : Messages . PROBLEMS_PANEL_CONFIGURATION_COMPARE_ORDER ,
106106 'type' : 'string' ,
107107 'default' : 'severity' ,
You can’t perform that action at this time.
0 commit comments