Reputation: 570
I have a Power Automate flow. it has a SharePoint trigger of type "For a selected file". I have several input fields in that trigger. I want to change the order of those fields. how can I do that?
Upvotes: 0
Views: 860
Reputation: 2218
Unfortunately, there are not settings/options available to change the order of inputs added to Power Automate flow triggers.
So, you will have to delete the existing inputs and create new inputs in the correct order.
Above solution is an easy solution and using the browsers only. You can also try below workaround in cases where you have lot of inputs added to Power Automate trigger:
Export your flow as zip package
Extract the zip file contents
Open definition.json
file from nested folder (Microsoft flow --> flows --> <flow-guid>
--> definition.json
)
Find the triggers > inputs > properties section and change the order of properties. For example:
Save this file and create zip file again from all folder contents
Import the zip package and create new flow
Here is the output:
Reference: Export and import your flows across environments with packaging
Upvotes: 1