Merge pull request #1579 from ONLYOFFICE/fix/fix-bugs

Fix/fix bugs
This commit is contained in:
Julia Radzhabova 2022-02-18 11:49:18 +03:00 committed by GitHub
commit 6499c38105
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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();
}

View file

@ -44,7 +44,7 @@ export class storeUsers {
}
}
}
!changed && change && (this.users[change.asc_getId()] = change);
!changed && change && (this.users.push(change));
}
resetDisconnected (isDisconnected) {