Skip to content

Commit 97dd02b

Browse files
CopilotMicroFish91
andauthored
Fix missing periods in container app and scaling rule output messages (#960)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: MicroFish91 <40250218+MicroFish91@users.noreply.github.com>
1 parent dd46823 commit 97dd02b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/commands/createContainerApp/ContainerAppCreateStep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { type ContainerAppCreateContext } from "./ContainerAppCreateContext";
1919
export class ContainerAppCreateStep<T extends ContainerAppCreateContext> extends AzureWizardExecuteStepWithActivityOutput<T> {
2020
public priority: number = 620;
2121
public stepName: string = 'containerAppCreateStep';
22-
protected getOutputLogSuccess = (context: T) => localize('createContainerAppSuccess', 'Created container app "{0}"', context.newContainerAppName);
22+
protected getOutputLogSuccess = (context: T) => localize('createContainerAppSuccess', 'Created container app "{0}".', context.newContainerAppName);
2323
protected getOutputLogFail = (context: T) => localize('createContainerAppFail', 'Failed to create container app "{0}"', context.newContainerAppName);
2424
protected getTreeItemLabel = (context: T) => localize('createContainerAppLabel', 'Create container app "{0}"', context.newContainerAppName);
2525

src/commands/scaling/scaleRule/addScaleRule/AddScaleRuleStep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class AddScaleRuleStep<T extends IAddScaleRuleContext> extends RevisionDr
2929
await this.updateRevisionDraftWithTemplate(context);
3030

3131
const resourceName = getParentResourceFromItem(this.baseItem).name;
32-
ext.outputChannel.appendLog(localize('addedScaleRule', 'Added {0} rule "{1}" to "{2}" (draft)', context.newRuleType, context.newRuleName, resourceName));
32+
ext.outputChannel.appendLog(localize('addedScaleRule', 'Added {0} rule "{1}" to "{2}" (draft).', context.newRuleType, context.newRuleName, resourceName));
3333
}
3434

3535
public shouldExecute(context: T): boolean {

src/commands/scaling/scaleRule/deleteScaleRule/DeleteScaleRuleStep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class DeleteScaleRuleStep<T extends ScaleRuleContext> extends RevisionDra
2828
await this.updateRevisionDraftWithTemplate(context);
2929

3030
const resourceName = getParentResourceFromItem(this.baseItem).name;
31-
ext.outputChannel.appendLog(localize('deletedScaleRule', 'Deleted rule "{0}" from "{1}" (draft)', context.scaleRule?.name, resourceName));
31+
ext.outputChannel.appendLog(localize('deletedScaleRule', 'Deleted rule "{0}" from "{1}" (draft).', context.scaleRule?.name, resourceName));
3232
}
3333

3434
public shouldExecute(context: T): boolean {

0 commit comments

Comments
 (0)