From 2d4e237e75d59fbdd249ab0cf5585a81a3cb347e Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Sat, 15 May 2021 13:47:32 +0300 Subject: [PATCH] [themes] correct "available" option --- apps/common/main/lib/controller/Themes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/controller/Themes.js b/apps/common/main/lib/controller/Themes.js index 061a4800f..1c11545a3 100644 --- a/apps/common/main/lib/controller/Themes.js +++ b/apps/common/main/lib/controller/Themes.js @@ -226,7 +226,7 @@ define([ }, available: function () { - return !Common.Utils.isIE && !!this.locked; + return !Common.Utils.isIE && !this.locked; }, setAvailable: function (value) {