In your project Graph-Editor, in the file editor.html, if suppose the file name includes a comma(,), the save command will work fine, which it should. But while loading the filenames for the dropdown, you split by comma, so this file name would be split into parts, causing errors. You should use a character like '/', which is not allowed in filenames to solve this issue.
In your project Graph-Editor, in the file editor.html, if suppose the file name includes a comma(,), the save command will work fine, which it should. But while loading the filenames for the dropdown, you split by comma, so this file name would be split into parts, causing errors. You should use a character like '/', which is not allowed in filenames to solve this issue.