
Announcements
I have been working on updating my company's connector for several weeks. I have been using the "x-ms-editor-options" extension to provide a better user experience when accessing drop-down menus when configuring an action in a flow. For example:
"x-ms-editor-options": {
"items": [
{
"title": "Consolidated Activity Log",
"value": "consolidated"
},
{
"title": "Administrative Log",
"value": "admin"
}
]
}
}
This has been working really well for the last few weeks, showing the user the "title" value but applying the value on the backend. A few days ago I noticed that this has stopped working and now simply shows the value twice:
This has affected all 15 actions that use this extension. Has something changed on the Power Automate site recently?
MSFT informed me that the format has been changed to this:
"x-ms-enum-values": [
{
"displayName": "Consolidated Activity Log",
"value": "consolidated"
},
{
"displayName": "Administrative Log",
"value": "admin"
}
]