aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Bennett <hello@vantezzen.io>2020-10-04 01:49:27 +0200
committerLibravatar GitHub <noreply@github.com>2020-10-04 00:49:27 +0100
commit5da530951683666d7b79e8fb39a05f4aab15def1 (patch)
tree1a63d564cb70ab8d189122794c7c0b9d4ea0c91c /src
parentFix Electron 9 crash on Windows 10 (#986) (diff)
downloadferdium-app-5da530951683666d7b79e8fb39a05f4aab15def1.tar.gz
ferdium-app-5da530951683666d7b79e8fb39a05f4aab15def1.tar.zst
ferdium-app-5da530951683666d7b79e8fb39a05f4aab15def1.zip
Fix "Open folder" button on "Custom services" screen (#991)
Diffstat (limited to 'src')
-rw-r--r--src/containers/settings/RecipesScreen.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/containers/settings/RecipesScreen.js b/src/containers/settings/RecipesScreen.js
index 460b915bb..60071b402 100644
--- a/src/containers/settings/RecipesScreen.js
+++ b/src/containers/settings/RecipesScreen.js
@@ -163,7 +163,7 @@ export default @inject('stores', 'actions') @observer class RecipesScreen extend
163 recipeDirectory={recipeDirectory} 163 recipeDirectory={recipeDirectory}
164 openRecipeDirectory={async () => { 164 openRecipeDirectory={async () => {
165 await fs.ensureDir(recipeDirectory); 165 await fs.ensureDir(recipeDirectory);
166 shell.openItem(recipeDirectory); 166 shell.openExternal(`file://${recipeDirectory}`);
167 }} 167 }}
168 openDevDocs={() => { 168 openDevDocs={() => {
169 appActions.openExternalUrl({ url: FRANZ_DEV_DOCS }); 169 appActions.openExternalUrl({ url: FRANZ_DEV_DOCS });