@@ -7,7 +7,7 @@ import { LocationListStep, ResourceGroupCreateStep, VerifyProvidersStep } from "
77import { AzureWizard , AzureWizardExecuteStep , AzureWizardPromptStep , GenericTreeItem , IActionContext , ISubscriptionContext , createSubscriptionContext , nonNullProp , nonNullValueAndProp , subscriptionExperience } from "@microsoft/vscode-azext-utils" ;
88import type { AzureSubscription } from "@microsoft/vscode-azureresources-api" ;
99import { ProgressLocation , window } from "vscode" ;
10- import { activitySuccessContext , activitySuccessIcon , appProvider , managedEnvironmentsId , operationalInsightsProvider , webProvider } from "../../constants" ;
10+ import { activityInfoIcon , activitySuccessContext , appProvider , managedEnvironmentsId , operationalInsightsProvider , webProvider } from "../../constants" ;
1111import { ext } from "../../extensionVariables" ;
1212import { ContainerAppModel , isIngressEnabled } from "../../tree/ContainerAppItem" ;
1313import { createActivityChildContext , createActivityContext } from "../../utils/activity/activityUtils" ;
@@ -70,8 +70,8 @@ export async function deployWorkspaceProject(context: IActionContext): Promise<v
7070 wizardContext . activityChildren ?. push (
7171 new GenericTreeItem ( undefined , {
7272 contextValue : createActivityChildContext ( [ 'useExistingResourceGroup' , activitySuccessContext ] ) ,
73- label : localize ( 'useResourceGroup' , 'Use resource group "{0}"' , resourceGroupName ) ,
74- iconPath : activitySuccessIcon
73+ label : localize ( 'useResourceGroup' , 'Using resource group "{0}"' , resourceGroupName ) ,
74+ iconPath : activityInfoIcon
7575 } )
7676 ) ;
7777
@@ -88,8 +88,8 @@ export async function deployWorkspaceProject(context: IActionContext): Promise<v
8888 wizardContext . activityChildren ?. push (
8989 new GenericTreeItem ( undefined , {
9090 contextValue : createActivityChildContext ( [ 'useExistingManagedEnvironment' , activitySuccessContext ] ) ,
91- label : localize ( 'useManagedEnvironment' , 'Use container app environment "{0}"' , managedEnvironmentName ) ,
92- iconPath : activitySuccessIcon
91+ label : localize ( 'useManagedEnvironment' , 'Using container app environment "{0}"' , managedEnvironmentName ) ,
92+ iconPath : activityInfoIcon
9393 } )
9494 ) ;
9595
@@ -119,8 +119,8 @@ export async function deployWorkspaceProject(context: IActionContext): Promise<v
119119 wizardContext . activityChildren ?. push (
120120 new GenericTreeItem ( undefined , {
121121 contextValue : createActivityChildContext ( [ 'useExistingAcr' , activitySuccessContext ] ) ,
122- label : localize ( 'useAcr' , 'Use container registry "{0}"' , registryName ) ,
123- iconPath : activitySuccessIcon
122+ label : localize ( 'useAcr' , 'Using container registry "{0}"' , registryName ) ,
123+ iconPath : activityInfoIcon
124124 } )
125125 ) ;
126126
@@ -139,8 +139,8 @@ export async function deployWorkspaceProject(context: IActionContext): Promise<v
139139 wizardContext . activityChildren ?. push (
140140 new GenericTreeItem ( undefined , {
141141 contextValue : createActivityChildContext ( [ 'useExistingContainerApp' , activitySuccessContext ] ) ,
142- label : localize ( 'useContainerApp' , 'Use container app "{0}"' , containerAppName ) ,
143- iconPath : activitySuccessIcon
142+ label : localize ( 'useContainerApp' , 'Using container app "{0}"' , containerAppName ) ,
143+ iconPath : activityInfoIcon
144144 } )
145145 ) ;
146146
0 commit comments