feat(reports): stabilize on-demand generation, live presence and 1C fallback
This commit is contained in:
@@ -5,6 +5,16 @@
|
||||
* ===============================================================================
|
||||
*/
|
||||
|
||||
window.escapeHtml = window.escapeHtml || function (str) {
|
||||
if (str === null || str === undefined) return '';
|
||||
return String(str)
|
||||
.replace(/&/g, '&')
|
||||
.replace(/</g, '<')
|
||||
.replace(/>/g, '>')
|
||||
.replace(/"/g, '"')
|
||||
.replace(/'/g, ''');
|
||||
};
|
||||
|
||||
let currentTasksFilter = 'ALL';
|
||||
let tasksCache = [];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user