Can't change description text for Azure Logic App trigger from within VS Code designer
- Dominant language
- TypeScript
- Stars
- 111
- Forks
- 109
- Avg merge
- 1d 23h
- Merged PRs (30d)
- 20
Description
### Severity
P3 - Medium (Minor functionality affected)
### Describe the Bug with repro steps
I have a few Azure logic apps that I am trying to edit within VS code. Using the designer UI for each flow, I click on the trigger within that flow to bring up the properties tab for the trigger. In my case, these triggers are Azure Event Grid triggers. I then try to add a description and save the changes by clicking the Save button.
When I do this, it seems that the first character of what I type into the description field gets saved, but all other characters are truncated. For example, if the description is initially empty and I add the text "This is a text description", press save then the description of "T" will be saved. This was verified by looking in the workflow JSON file's "description" property for the trigger. I then go back into the trigger description and change the "T" to "This is a text description". When I press Save again the description is now set to "Th". And so on.
### What type of Logic App Is this happening in?
Standard (VSCode)
### Are you experiencing a regression?
_No response_
### Which operating system are you using?
Windows
### Did you refer to the TSG before filing this issue? https://aka.ms/lauxtsg
Yes
### Workflow JSON
```json
"triggers": {
"When_a_software_application_event_is_received": {
"type": "ApiConnectionWebhook",
"description": "This is a test description and ",
"inputs": {
"host": {
"connection": {
"referenceName": "azureeventgrid"
}
},
"body": {
"properties": {
"topic": "@{parameters('EventGridEventsTopicId')}",
"destination": {
"endpointType": "webhook",
"properties": {
"endpointUrl": "@{listCallbackUrl()}"
}
},
"filter": {
"includedEventTypes": [
"SoftwareApplication.Created",
"SoftwareApplication.Updated"
]
}
}
},
"path": "/subscriptions/@{encodeURIComponent('xxxx')}/providers/@{encodeURIComponent('Microsoft.EventGrid.Topics')}/resource/eventSubscriptions",
"queries": {
"x-ms-api-version": "2017-06-15-preview"
}
},
"splitOn": "@triggerBody()"
}
```
### Screenshots or Videos
### Environment
VS Code:
Version: 1.104.3 (user setup)
Commit: 385651c938df8a906869babee516bffd0ddb9829
Date: 2025-10-02T12:30:51.747Z
Electron: 37.3.1
ElectronBuildId: 12404162
Chromium: 138.0.7204.235
Node.js: 22.18.0
V8: 13.8.258.31-electron.0
OS: Windows_NT x64 10.0.26100
Extension:
Identifier: ms-azuretools.vscode-azurelogicapps
Version: 5.165.9
Last Updated: 2025-10-02, 13:11:26
### Additional context
_No response_
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.