From d201cd180798560d0dcd7fbf3a0e4e467936d338 Mon Sep 17 00:00:00 2001 From: Julien Giovaresco Date: Tue, 20 Oct 2020 09:36:04 +0200 Subject: [PATCH] Rename button label of the `Save and Download` action save dialog (#2727) The label was `Send and Save`, it is confusing because actually the request was already sent. --- packages/insomnia-app/app/ui/containers/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/insomnia-app/app/ui/containers/app.js b/packages/insomnia-app/app/ui/containers/app.js index 99724de538..973c0f7c9b 100644 --- a/packages/insomnia-app/app/ui/containers/app.js +++ b/packages/insomnia-app/app/ui/containers/app.js @@ -621,7 +621,7 @@ class App extends PureComponent { async _getDownloadLocation() { const options = { title: 'Select Download Location', - buttonLabel: 'Send and Save', + buttonLabel: 'Save', }; const defaultPath = window.localStorage.getItem('insomnia.sendAndDownloadLocation');