diff --git a/packages/secubox-cookies/www/cookies/index.html b/packages/secubox-cookies/www/cookies/index.html index 6486e252..a414dcf6 100644 --- a/packages/secubox-cookies/www/cookies/index.html +++ b/packages/secubox-cookies/www/cookies/index.html @@ -817,7 +817,7 @@ const sites = (t.sites || []).join(', '); const seen = t.last_seen ? new Date(t.last_seen * 1000).toLocaleString() : '-'; const pc = t.pre_consent_hits > 0 - ? `${t.pre_consent_hits}` : '0'; + ? `${Number(t.pre_consent_hits) | 0}` : '0'; return ` ${esc(t.tracker_domain)} ${t.site_count} @@ -1002,8 +1002,7 @@ } async function refresh() { - await Promise.all([loadStatus(), loadStats(), loadViolationsPreview()]); - loadCrossSite(); + await Promise.all([loadStatus(), loadStats(), loadViolationsPreview(), loadCrossSite()]); } // Initial load