fix bug 80516

Co-authored-by: Dmitry-Ilyushechkin <dmitry.ilyushechkin@onlyoffice.com>
Co-committed-by: Dmitry-Ilyushechkin <dmitry.ilyushechkin@onlyoffice.com>
This commit is contained in:
Dmitry-Ilyushechkin
2026-03-10 18:40:17 +00:00
committed by Maxim Kadushkin
parent 52cc083fcf
commit db62c7a3b1

View File

@ -145,10 +145,10 @@ Common.UI.HintManager = new(function() {
_currentLevel = prevLevel;
_currentControls.length = 0;
_currentControls.push(prevControls);
if (prevControls.length) _currentControls.push(...prevControls);
_usedTitles.length = 0;
_usedTitles.push(prevUsed);
if (prevUsed.length) _usedTitles.push(...prevUsed);
}
var _setCurrentSection = function (btn, section) {