1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Tweak message of question from user

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2022-05-20 14:01:39 +03:00
parent f3bdabb777
commit aa0ea4d4b4
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A
3 changed files with 7 additions and 2 deletions

View File

@ -399,6 +399,8 @@ exports[`installing update using tray given no update is already downloaded, and
</b> </b>
<p> <p>
Version some-version of Lens IDE is available and ready to be installed. Would you like to update now? Version some-version of Lens IDE is available and ready to be installed. Would you like to update now?
Lens should restart automatically, if it doesn't please restart manually. Installed extensions might require updating.
</p> </p>
<div <div
class="flex gaps row align-left box grow" class="flex gaps row align-left box grow"

View File

@ -187,7 +187,8 @@ describe("installing update", () => {
id: "install-update", id: "install-update",
title: "Update Available", title: "Update Available",
question: question:
"Version some-version of Lens IDE is available and ready to be installed. Would you like to update now?", "Version some-version of Lens IDE is available and ready to be installed. Would you like to update now?\n\n" +
"Lens should restart automatically, if it doesn't please restart manually. Installed extensions might require updating.",
}); });
}); });

View File

@ -79,7 +79,9 @@ const checkForUpdatesInjectable = getInjectable({
const userWantsToInstallUpdate = await askBoolean({ const userWantsToInstallUpdate = await askBoolean({
id: "install-update", id: "install-update",
title: "Update Available", title: "Update Available",
question: `Version ${version} of Lens IDE is available and ready to be installed. Would you like to update now?`,
question: `Version ${version} of Lens IDE is available and ready to be installed. Would you like to update now?\n\n` +
`Lens should restart automatically, if it doesn't please restart manually. Installed extensions might require updating.`,
}); });
if (userWantsToInstallUpdate) { if (userWantsToInstallUpdate) {