I created a test screen with a label containing text "B&G" and a button that when pressed, grabs the label text, sets a 'test' variable (using Set local storage variable action) and displays using
alert (localStorage.getItem('test'));
The text stored in the variable returns 'B & amp ; G' without spaces
Is there a way that I can get it to properly escape this character?
I also tested with a text area component and that seemed to return the correct string.