Skip to content

Commit 38c5177

Browse files
committed
Get rid of preview label
1 parent f9dac95 commit 38c5177

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/commands/createFunctionApp/FunctionAppHostingPlanStep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ export class FunctionAppHostingPlanStep extends AzureWizardPromptStep<IFunctionA
1717
public async prompt(context: IFunctionAppWizardContext): Promise<void> {
1818
const placeHolder: string = localize('selectHostingPlan', 'Select a hosting plan.');
1919
const picks: IAzureQuickPickItem<[boolean, RegExp | undefined]>[] = [
20+
{ label: localize('flexConsumption', 'Flex Consumption'), data: [false, undefined] },
2021
{ label: localize('consumption', 'Consumption'), data: [true, undefined] },
21-
{ label: localize('flexConsumption', 'Flex Consumption'), description: 'Preview', data: [false, undefined] },
2222
{ label: localize('premium', 'Premium'), data: [false, /^EP$/i] },
2323
{ label: localize('dedicated', 'App Service Plan'), data: [false, /^((?!EP|Y|FC).)*$/i] }
2424
];

src/tree/ResolvedFunctionAppResource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export class ResolvedFunctionAppResource extends ResolvedFunctionAppBase impleme
107107

108108
public get description(): string | undefined {
109109
if (this._isFlex) {
110-
return localize('flexFunctionApp', 'Flex (Preview)');
110+
return localize('flexFunctionApp', 'Flex Consumption');
111111
}
112112
return this._state?.toLowerCase() !== 'running' ? this._state : undefined;
113113
}

0 commit comments

Comments
 (0)