From 2c19c221e7828eacd93f2620faa384891551c1ea Mon Sep 17 00:00:00 2001 From: Caleb Date: Sun, 29 Oct 2017 17:38:37 -0600 Subject: [PATCH] Fix TOML files not being saved with correct file extension. --- src/reducers/collections.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/reducers/collections.js b/src/reducers/collections.js index 2f5c5873..25d913fe 100644 --- a/src/reducers/collections.js +++ b/src/reducers/collections.js @@ -29,6 +29,7 @@ const collections = (state = null, action) => { const formatToExtension = format => ({ markdown: 'md', yaml: 'yml', + toml: 'toml', json: 'json', html: 'html', }[format]);