Skip to content

Commit b8ab0aa

Browse files
Copilotnturinski
andauthored
Add period at end of "Enabled system assigned identity" message (#4520)
* Initial plan for issue * Add period to end of system assigned identity message Co-authored-by: nturinski <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: nturinski <[email protected]>
1 parent df3649f commit b8ab0aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/identity/EnableSystemIdentityStep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class EnableSystemIdentityAssignStep extends AzureWizardExecuteStep<Manag
2424
site.rawSite.identity = identity;
2525

2626
const enabling: string = localize('enabling', 'Enabling system assigned identity for "{0}"...', site.fullName);
27-
const enabled: string = localize('enabled', 'Enabled system assigned identity for "{0}"', site.fullName);
27+
const enabled: string = localize('enabled', 'Enabled system assigned identity for "{0}".', site.fullName);
2828
ext.outputChannel.appendLog(enabling);
2929

3030
await client.webApps.update(site.resourceGroup, site.siteName, site.rawSite);

0 commit comments

Comments
 (0)