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 26a144e commit 7130103Copy full SHA for 7130103
app/renderer/js/components/handle-external-link.js
@@ -29,7 +29,7 @@ function handleExternalLink(event) {
29
ipcRenderer.send('downloadFile', url, downloadPath);
30
ipcRenderer.once('downloadFileCompleted', (event, filePath, fileName) => {
31
const downloadNotification = new Notification('Download Complete', {
32
- body: `Click to open ${fileName}`,
+ body: shouldShowInFolder ? `Click to show ${fileName} in folder` : `Click to open ${fileName}`,
33
silent: true // We'll play our own sound - ding.ogg
34
});
35
0 commit comments