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:
parent
f3bdabb777
commit
aa0ea4d4b4
@ -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"
|
||||||
|
|||||||
@ -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.",
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@ -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) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user