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 7e4e655 commit f0b48bcCopy full SHA for f0b48bc
2 files changed
src/graph-builder/graph-core/5-load-save.js
@@ -149,6 +149,8 @@ class GraphLoadSave extends GraphUndoRedo {
149
const stream = await handle.createWritable();
150
await stream.write(blob);
151
await stream.close();
152
+ // eslint-disable-next-line no-alert
153
+ alert('File saved Successfully');
154
}
155
156
saveToFolder() {
src/toolbarActions/toolbarFunctions.js
@@ -92,8 +92,6 @@ async function saveGraphMLFile(state) {
92
alert('File saved Successfully');
93
} else if (graph.fileHandle === null) {
94
getGraphFun(state).saveWithoutFileHandle();
95
- // eslint-disable-next-line no-alert
96
- alert('File saved Successfully');
97
} else {
98
// eslint-disable-next-line no-alert
99
alert('Switch to Edge/Chrome!');
0 commit comments