From cda3c71b2a9ed3f2920ff5d3dd7065b8b00f52c9 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 17 Feb 2022 16:39:10 +0300 Subject: [PATCH 1/2] [mobile] Fix bug 55615 --- apps/common/mobile/lib/store/users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/mobile/lib/store/users.js b/apps/common/mobile/lib/store/users.js index b13152b94..b8d37ed4b 100644 --- a/apps/common/mobile/lib/store/users.js +++ b/apps/common/mobile/lib/store/users.js @@ -44,7 +44,7 @@ export class storeUsers { } } } - !changed && change && (this.users[change.asc_getId()] = change); + !changed && change && (this.users.push(change)); } resetDisconnected (isDisconnected) { From 5ba251964ad52eaad263514be08870f10e9a2927 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Fri, 18 Feb 2022 11:37:15 +0300 Subject: [PATCH 2/2] [DE PE SSE] Fix hint manager --- apps/common/main/lib/controller/HintManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/controller/HintManager.js b/apps/common/main/lib/controller/HintManager.js index 516ce3f01..ee2dd42f2 100644 --- a/apps/common/main/lib/controller/HintManager.js +++ b/apps/common/main/lib/controller/HintManager.js @@ -592,7 +592,7 @@ Common.UI.HintManager = new(function() { } } - _needShow = (e.keyCode == Common.UI.Keys.ALT && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0); + _needShow = (!e.shiftKey && e.keyCode == Common.UI.Keys.ALT && !Common.Utils.ModalWindow.isVisible() && _isDocReady && _arrAlphabet.length > 0); if (e.altKey && e.keyCode !== 115) { e.preventDefault(); }