Skip to content

Commit

Permalink
Filter save data
Browse files Browse the repository at this point in the history
  • Loading branch information
expitau committed May 1, 2024
1 parent 58394ad commit b216337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ <h3>Used in</h3>
addEventListener("popstate", (event) => this.navigateTo(getQuery().e || ''));

if (localStorage.getItem('saveData') != null) {
this.saveDataArray = localStorage.getItem('saveData').split(',');
this.saveDataArray = localStorage.getItem('saveData').split(',').filter(x => x);
}

function processDataFromIframe(data) {
Expand Down

0 comments on commit b216337

Please sign in to comment.