From 3df297f03799268c0f843b38f8d2819fa16e605a Mon Sep 17 00:00:00 2001 From: briandennis Date: Sun, 24 Sep 2017 22:35:56 -0500 Subject: [PATCH] update file name on save --- pages/editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/editor.js b/pages/editor.js index 698e506..0bf555a 100644 --- a/pages/editor.js +++ b/pages/editor.js @@ -81,7 +81,7 @@ class Editor extends React.Component { this.getCarbonImage() .then((dataUrl) => { const link = document.createElement('a') - link.download = 'snippet.png' + link.download = 'carbon.png' link.href = dataUrl link.click() })