@@ -41,16 +41,16 @@ export const switchIcon: Partial<{ [key in TreeNodeType]: { icon: string, unfold
4141 icon : '\ue65b'
4242 } ,
4343 [ TreeNodeType . VIEW ] : {
44- icon : '\ue647 '
44+ icon : '\ue70c '
4545 } ,
4646 [ TreeNodeType . FUNCTION ] : {
47- icon : '\ue6fd '
47+ icon : '\ue76a '
4848 } ,
4949 [ TreeNodeType . PROCEDURE ] : {
50- icon : '\ue647 '
50+ icon : '\ue73c '
5151 } ,
5252 [ TreeNodeType . TRIGGER ] : {
53- icon : '\ue647 '
53+ icon : '\ue64a '
5454 } ,
5555}
5656
@@ -243,7 +243,7 @@ export const treeConfig: { [key in TreeNodeType]: ITreeConfigItem } = {
243243 } ,
244244
245245 [ TreeNodeType . VIEWS ] : {
246- icon : '\ue647 ' ,
246+ icon : '\ue70c ' ,
247247 getChildren : ( params ) => {
248248 return new Promise ( ( r : ( value : ITreeNode [ ] ) => void , j ) => {
249249 mysqlServer . getViewList ( params ) . then ( res => {
@@ -269,7 +269,7 @@ export const treeConfig: { [key in TreeNodeType]: ITreeConfigItem } = {
269269 } ,
270270
271271 [ TreeNodeType . FUNCTIONS ] : {
272- icon : '\ue647 ' ,
272+ icon : '\ue76a ' ,
273273 getChildren : ( params ) => {
274274 return new Promise ( ( r : ( value : ITreeNode [ ] ) => void , j ) => {
275275 mysqlServer . getFunctionList ( params ) . then ( res => {
@@ -296,11 +296,11 @@ export const treeConfig: { [key in TreeNodeType]: ITreeConfigItem } = {
296296 } ,
297297
298298 [ TreeNodeType . FUNCTION ] : {
299- icon : '\ue6fd ' ,
299+ icon : '\ue76a ' ,
300300 } ,
301301
302302 [ TreeNodeType . PROCEDURES ] : {
303- icon : '\ue647 ' ,
303+ icon : '\ue73c ' ,
304304 getChildren : ( params ) => {
305305 return new Promise ( ( r : ( value : ITreeNode [ ] ) => void , j ) => {
306306 mysqlServer . getProcedureList ( params ) . then ( res => {
@@ -327,11 +327,11 @@ export const treeConfig: { [key in TreeNodeType]: ITreeConfigItem } = {
327327 } ,
328328
329329 [ TreeNodeType . PROCEDURE ] : {
330- icon : '\ue611 '
330+ icon : '\ue73c '
331331 } ,
332332
333333 [ TreeNodeType . TRIGGERS ] : {
334- icon : '\ue647 ' ,
334+ icon : '\ue64a ' ,
335335 getChildren : ( params ) => {
336336 return new Promise ( ( r : ( value : ITreeNode [ ] ) => void , j ) => {
337337 mysqlServer . getTriggerList ( params ) . then ( res => {
@@ -358,11 +358,11 @@ export const treeConfig: { [key in TreeNodeType]: ITreeConfigItem } = {
358358 } ,
359359
360360 [ TreeNodeType . TRIGGER ] : {
361- icon : '\ue611 '
361+ icon : '\ue64a '
362362 } ,
363363
364364 [ TreeNodeType . VIEW ] : {
365- icon : '\ue647 ' ,
365+ icon : '\ue70c ' ,
366366 getChildren : ( params ) => {
367367 return new Promise ( ( r : ( value : ITreeNode [ ] ) => void , j ) => {
368368 const list = [
0 commit comments