viberadar 0.3.184 → 0.3.185
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ui/dashboard.html +4 -1
- package/package.json +1 -1
package/dist/ui/dashboard.html
CHANGED
|
@@ -1872,7 +1872,9 @@ function escapeHtml(text) {
|
|
|
1872
1872
|
return String(text || '')
|
|
1873
1873
|
.replace(/&/g, '&')
|
|
1874
1874
|
.replace(/</g, '<')
|
|
1875
|
-
.replace(/>/g, '>')
|
|
1875
|
+
.replace(/>/g, '>')
|
|
1876
|
+
.replace(/"/g, '"')
|
|
1877
|
+
.replace(/'/g, ''');
|
|
1876
1878
|
}
|
|
1877
1879
|
|
|
1878
1880
|
|
|
@@ -3119,6 +3121,7 @@ async function init() {
|
|
|
3119
3121
|
document.getElementById('searchInput').value = searchQuery;
|
|
3120
3122
|
|
|
3121
3123
|
document.getElementById('loading').style.display = 'none';
|
|
3124
|
+
if (contextMode === 'probe') { await loadProbeData(); }
|
|
3122
3125
|
renderStats();
|
|
3123
3126
|
renderSidebar();
|
|
3124
3127
|
renderContent();
|