1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
Signed-off-by: Gabriel <gaccettola@mirantis.com>
This commit is contained in:
Gabriel 2023-03-20 23:58:56 +01:00
parent ad1c2f940f
commit c51c202df8
2 changed files with 11 additions and 11 deletions

View File

@ -15,7 +15,7 @@ const checkForUpdatesMenuItemInjectable = getInjectable({
id: "check-for-updates-menu-item",
instantiate: (di) => {
const processCheckingForUpdates = di.inject(processCheckingForUpdatesInjectable,);
const processCheckingForUpdates = di.inject(processCheckingForUpdatesInjectable);
const showApplicationWindow = di.inject(showApplicationWindowInjectable);
const updatingIsEnabled = di.inject(updatingIsEnabledInjectable);
const isMac = di.inject(isMacInjectable);
@ -36,12 +36,12 @@ const checkForUpdatesMenuItemInjectable = getInjectable({
await showApplicationWindow();
} else {
showMessagePopup(
`No Updates Available`,
'You\'re all good',
`You've got the latest version of Lens,\nthanks for staying on the ball.`,
"No Updates Available",
"You're all good",
"You've got the latest version of Lens,\nthanks for staying on the ball.",
{
textWidth: 300
}
textWidth: 300,
},
);
}
},

View File

@ -67,12 +67,12 @@ const checkForUpdatesTrayItemInjectable = getInjectable({
await showApplicationWindow();
} else {
showMessagePopup(
`No Updates Available`,
'You\'re all good',
`You've got the latest version of Lens,\nthanks for staying on the ball.`,
"No Updates Available",
"You're all good",
"You've got the latest version of Lens,\nthanks for staying on the ball.",
{
textWidth: 300
}
textWidth: 300,
},
);
}
},