I have a MS Form that I’m using in PowerAutomate and I was wondering what I can do with the below to display the additional options without the brackets around it?
concat('<b><u>TMII Configuration</u></b>',
'<br><i>TMII Test Capability: </i>',outputs('Get_response_details')?['body/rfaec6e0bffdd40d5b2bfefabde0529fd'],
'<br><i>TMII Isolation Valve Required: </i>',outputs('Get_response_details')?['body/rc9875756ebb2463fb1194cc4bc614d4b'],
'<br><i>TMII Part Evacuation Regulator Required: </i>',outputs('Get_response_details')?['body/raf6c8fc87bbf42c3af36e0e1d2ece592'],
'<br><i>TMII # of Sources Required: </i>',outputs('Get_response_details')?['body/rdc0027a7148e41ea9f511e6700d4c294'],
'<br><i>TMII Tooling Valves: </i>',outputs('Get_response_details')?['body/r8a8d0c80ffc7477dafe5145405ea7407'],
'<br><i>TMII Power Cord: </i>',outputs('Get_response_details')?['body/r331b9f32554a4a25bf6f1a5f9230ec92'],
'<br><i>TMII Additional Options: </i>',outputs('Get_response_details')?['body/r3642652628c144a0a27d0cc90dbcf369'],
'<br><i>TMII Leak Rate & Test Pressure: </i>',outputs('Get_response_details')?['body/r9c6204709af745a0baaeb8901720aef0'],
'<br><i>TMII Additional Notes: </i>',outputs('Get_response_details')?['body/rdac33cf0570047059a0087aed9753f54'])
There are 2 options available to the user but when the email producing the additional options appear as such:
TMII Additional Options: ["Hard Vacuum Gauge","Purging Clamshell"]
How do I get rid of the [“”] and only show the selected item(s)? Is there an adjustment to the code that I can add just for this situation?