Rename node icons to match contextValue
До Ширина: | Высота: | Размер: 670 B После Ширина: | Высота: | Размер: 670 B |
До Ширина: | Высота: | Размер: 728 B После Ширина: | Высота: | Размер: 728 B |
До Ширина: | Высота: | Размер: 670 B После Ширина: | Высота: | Размер: 670 B |
До Ширина: | Высота: | Размер: 728 B После Ширина: | Высота: | Размер: 728 B |
|
@ -38,8 +38,8 @@ export class FunctionAppNode implements INode {
|
|||
|
||||
get iconPath(): { light: string, dark: string } {
|
||||
return {
|
||||
light: path.join(__filename, '..', '..', '..', '..', 'resources', 'light', 'AzureFunctionsApp.svg'),
|
||||
dark: path.join(__filename, '..', '..', '..', '..', 'resources', 'dark', 'AzureFunctionsApp.svg')
|
||||
light: path.join(__filename, '..', '..', '..', '..', 'resources', 'light', `${this.contextValue}.svg`),
|
||||
dark: path.join(__filename, '..', '..', '..', '..', 'resources', 'dark', `${this.contextValue}.svg`)
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -35,8 +35,8 @@ export class SubscriptionNode implements INode {
|
|||
|
||||
get iconPath(): { light: string, dark: string } {
|
||||
return {
|
||||
light: path.join(__filename, '..', '..', '..', '..', 'resources', 'light', 'AzureSubscription.svg'),
|
||||
dark: path.join(__filename, '..', '..', '..', '..', 'resources', 'dark', 'AzureSubscription.svg')
|
||||
light: path.join(__filename, '..', '..', '..', '..', 'resources', 'light', `${this.contextValue}.svg`),
|
||||
dark: path.join(__filename, '..', '..', '..', '..', 'resources', 'dark', `${this.contextValue}.svg`)
|
||||
};
|
||||
}
|
||||
|
||||
|
|