I have two use cases where I'm storing sets of data as a JSON array in a multi-line text field. I do this for Flow so I can pull it back out and find what I need and change things as necessary.
However, I'd like to display this data correctly in the Sharepoint View Form as edited by PowerApps. I didn't see a way to display JSON data nicely, which makes sense. So in Flow, I break out that data and save it in a different multi-line text field that should be more readable.
Name, time <br>
Name, time <br>
Or
Name, time <br>
---Comment <br>
Name, time <br>
---Comment <br>
The problem I'm having is that Powerapps HTML and RichText view fields are not respecting new lines. I've tried <br> and just a new line in the Flow Comp (which does indeed save correctly in Sharepoint). Neither works to clean up the display. I end up with...
Name, time <br>---Comment <br>Name, time <br>---Comment <br>
It word-wraps as necessary. However this isn't terribly readable. Is there a way I can get the working?