From 468dd67024ad517985149d6e4269a4e8f793551a Mon Sep 17 00:00:00 2001 From: Cashew Date: Sun, 25 Aug 2024 23:20:48 +0700 Subject: [PATCH] disable no updates button --- ext/js/pages/settings/dictionary-controller.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ext/js/pages/settings/dictionary-controller.js b/ext/js/pages/settings/dictionary-controller.js index 49dd865dd4..5ddace3b1c 100644 --- a/ext/js/pages/settings/dictionary-controller.js +++ b/ext/js/pages/settings/dictionary-controller.js @@ -969,6 +969,9 @@ export class DictionaryController { } } finally { this._setButtonsEnabled(true); + if (this._checkUpdatesButton !== null) { + this._checkUpdatesButton.disabled = true; + } this._checkingUpdates = false; } }