Clear Play Area
-
Hi,
Is there a way to clear the play area without opening it and editing the file (i.e clear it in the file store). I was testing some code I found online and saved it - now because of the CSS formatting the play screen goes completely white when I open it.Cheers,
Henry -
Hi Henry,
In the SQL console,
select id, xid, name from jsonData where xid like 'play-area-%';
then
delete from jsonData where id=
-
Perfect, Thank you!