This repository was archived by the owner on Apr 4, 2023. It is now read-only.
File tree 2 files changed +7
-7
lines changed
plugins/containers-plugin
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " containers-plugin" ,
2
+ "name" : " @eclipse-che/theia- containers-plugin" ,
3
3
"publisher" : " theia" ,
4
4
"keywords" : [
5
5
" theia-plugin"
Original file line number Diff line number Diff line change @@ -86,12 +86,12 @@ export class ContainersTreeDataProvider implements theia.TreeDataProvider<ITreeN
86
86
if ( ! serverKeys . length ) {
87
87
return ;
88
88
}
89
- const serversId = this . getRandId ( ) ;
89
+ const endpointsId = this . getRandId ( ) ;
90
90
this . treeNodeItems . push ( {
91
- id : serversId ,
91
+ id : endpointsId ,
92
92
parentId : treeItem . id ,
93
- name : 'servers ' ,
94
- tooltip : 'servers ' ,
93
+ name : 'endpoints ' ,
94
+ tooltip : 'endpoints ' ,
95
95
isExpanded : true
96
96
} ) ;
97
97
serverKeys . forEach ( ( serverName : string ) => {
@@ -101,10 +101,10 @@ export class ContainersTreeDataProvider implements theia.TreeDataProvider<ITreeN
101
101
}
102
102
const treeNodeItem : ITreeNodeItem = {
103
103
id : this . getRandId ( ) ,
104
- parentId : serversId ,
104
+ parentId : endpointsId ,
105
105
name : serverName ,
106
106
iconPath : 'fa-info-circle medium-blue' ,
107
- tooltip : server . url ? server . url : 'server '
107
+ tooltip : server . url ? server . url : 'endpoint '
108
108
} ;
109
109
if ( server . url && server . url . startsWith ( 'http' ) ) {
110
110
treeNodeItem . name = ` [${ serverName } ](${ server . url } )` ;
You can’t perform that action at this time.
0 commit comments