We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fc6c7b commit 7e4e655Copy full SHA for 7e4e655
1 file changed
src/toolbarActions/toolbarFunctions.js
@@ -88,8 +88,12 @@ async function saveGraphMLFile(state) {
88
const stream = await graph.fileHandle.createWritable();
89
await stream.write(getGraphFun(state).saveToFolder());
90
await stream.close();
91
+ // eslint-disable-next-line no-alert
92
+ alert('File saved Successfully');
93
} else if (graph.fileHandle === null) {
94
getGraphFun(state).saveWithoutFileHandle();
95
96
97
} else {
98
// eslint-disable-next-line no-alert
99
alert('Switch to Edge/Chrome!');
0 commit comments