fix "click to download" button

This commit is contained in:
perf3ct 2024-11-10 17:18:26 +00:00
parent 0acba0eac4
commit 1d2366fa06
No known key found for this signature in database
GPG Key ID: 569C4EEC436F5232

View File

@ -333,6 +333,8 @@ export default class GlobalMenuWidget extends BasicWidget {
const latestVersion = await this.fetchLatestVersion();
this.updateAvailableWidget.updateVersionStatus(latestVersion);
// Show "click to download" button in options menu if there's a new version available
this.$updateToLatestVersionButton.toggle(utils.isUpdateAvailable(latestVersion, glob.triliumVersion));
this.$updateToLatestVersionButton.find(".version-text").text(`Version ${latestVersion} is available, click to download.`);
}