From 21fe7558011cdf7df14508226d55aec7b3bad658 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Fri, 3 Dec 2021 16:02:31 +0300 Subject: [PATCH] [themes] fix bug 53610 --- 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 e96739acf..fa78162b3 100644 --- a/apps/common/main/lib/controller/Themes.js +++ b/apps/common/main/lib/controller/Themes.js @@ -255,7 +255,7 @@ define([ $(window).on('storage', function (e) { if ( e.key == 'ui-theme' || e.key == 'ui-theme-id' ) { - if ( !!t.originalEvent.newValue ) { + if ( !!e.originalEvent.newValue ) { me.setTheme(t.originalEvent.newValue, true); } } else