Skip to content

Commit cbf113b

Browse files
Copilotnturinski
andcommitted
Fix activity log message: change "Toggle" to "Switch" for ingress visibility
Co-authored-by: nturinski <5290572+nturinski@users.noreply.github.com>
1 parent 588607f commit cbf113b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ let perfStats = {
1616

1717
Object.defineProperty(exports, "__esModule", { value: true });
1818

19-
const extension = require('./out/src/extension');
19+
const extension = require('./dist/extension.bundle');
2020

2121
async function activate(ctx) {
2222
return await extension.activate(ctx, perfStats, true /*ignoreBundle*/);

src/commands/ingress/toggleIngressVisibility/toggleIngressVisibility.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export async function toggleIngressVisibility(context: IActionContext, node?: In
2727
};
2828

2929
const ingress: Ingress = nonNullValueAndProp(containerApp.configuration, 'ingress');
30-
const title: string = localize('toggleIngressVisibility', 'Toggle ingress visibility to "{0}" for container app "{1}"', ingress.external ? IngressConstants.internal : IngressConstants.external, containerApp.name);
30+
const title: string = localize('toggleIngressVisibility', 'Switch ingress visibility to "{0}" for container app "{1}"', ingress.external ? IngressConstants.internal : IngressConstants.external, containerApp.name);
3131

3232
const executeSteps: AzureWizardExecuteStep<IngressBaseContext>[] = [
3333
new ToggleIngressVisibilityStep()

0 commit comments

Comments
 (0)