File tree 4 files changed +7
-4
lines changed
4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
import { ExtendsStatusBar } from './statusBar' ;
2
2
import { ExtendsEditor } from './editor' ;
3
- import { ExtendsProblems } from './problems' ;
4
3
import { ExtendsFolderTree } from './folderTree' ;
5
4
import { ExtendsMenuBar } from './menuBar' ;
6
5
import { ExtendsActivityBar } from './activityBar' ;
@@ -22,7 +21,6 @@ export const defaultExtensions = [
22
21
ExtendsEditor ,
23
22
ExtendsMenuBar ,
24
23
ExtendsStatusBar ,
25
- ExtendsProblems ,
26
24
ExtendsExplorer ,
27
25
ExtendsEditorTree ,
28
26
defaultColorThemeExtension ,
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export function builtInOutputPanel() {
31
31
return {
32
32
id : PANEL_OUTPUT ,
33
33
name : localize ( PANEL_OUTPUT , 'output' ) ,
34
- data : 'output ' ,
34
+ data : '' ,
35
35
renderPane : ( item ) => < Output { ...item } /> ,
36
36
} ;
37
37
}
Original file line number Diff line number Diff line change 1
1
import { IExtension } from 'mo/model/extension' ;
2
2
import { ExtendDataSync } from './data-sync' ;
3
+ import { ExtendsProblems } from './problems' ;
3
4
4
5
import { ExtendTestPane } from './test' ;
5
6
6
- export const customExtensions : IExtension [ ] = [ ExtendDataSync , ExtendTestPane ] ;
7
+ export const customExtensions : IExtension [ ] = [
8
+ ExtendDataSync ,
9
+ ExtendTestPane ,
10
+ ExtendsProblems ,
11
+ ] ;
File renamed without changes.
You can’t perform that action at this time.
0 commit comments