[DE] Fix Bug 54199

This commit is contained in:
Julia Radzhabova 2021-11-29 14:42:40 +03:00
parent 4b364e3d23
commit f881e6ad8e

View file

@ -533,6 +533,8 @@ define([
ToolTip = '<b>'+ Common.Utils.String.htmlEncode(AscCommon.UserInfoParser.getParsedName(changes.get('username'))) +' </b>';
ToolTip += '<span style="font-size:10px; opacity: 0.7;">'+ changes.get('date') +'</span><br>';
ToolTip += changes.get('changetext');
if (ToolTip.length>1000)
ToolTip = ToolTip.substr(0, 1000) + '...';
}
}