Compare commits
2 Commits
316e4ab50c
...
69115b9e64
Author | SHA1 | Date | |
---|---|---|---|
69115b9e64 | |||
7118a597f1 |
@ -174,7 +174,13 @@ export default function generateSurveyQuestions(clusters: RequestCluster[]) {
|
||||
{
|
||||
type: 'html',
|
||||
name: 'intro',
|
||||
html: '<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ab, odit dicta at aut esse culpa eveniet iure odio voluptates veniam sit. Libero explicabo, perspiciatis ad expedita officiis inventore impedit ducimus!</p>',
|
||||
html: /* HTML */ `<p>
|
||||
Analiza ruchu strony zakończona. Aby lepiej oszacować, gdzie są
|
||||
potencjalne obszary robocze pod względem zgodności z RODO, możesz
|
||||
udzielić odpowiedzi na pytania dotyczące funkcjonowania strony. Wtyczka
|
||||
wtedy wygeneruje raport lub treść maila, którą możesz wysłać do
|
||||
administratora strony.
|
||||
</p>`,
|
||||
},
|
||||
],
|
||||
},
|
||||
|
@ -37,7 +37,6 @@ export default class NoInformationAtAllProblem extends Problem {
|
||||
|
||||
if (
|
||||
this.getMarkedClusters().some((cluster) => {
|
||||
console.log(cluster);
|
||||
return cluster.hasMarkedCookies();
|
||||
})
|
||||
) {
|
||||
|
@ -12,7 +12,6 @@ export default function useSurvey(
|
||||
const [survey, setSurvey] = React.useState<Survey.Model>(null);
|
||||
React.useEffect(() => {
|
||||
const model = generateSurveyQuestions(clusters);
|
||||
console.log(model);
|
||||
const survey = new Survey.Model(model);
|
||||
survey.onProcessTextValue.add(function (
|
||||
sender: Survey.SurveyModel,
|
||||
|
@ -119,10 +119,6 @@ export default function StolenDataCluster({
|
||||
const fullHosts = cluster.getFullHosts();
|
||||
const [version] = useEmitter(cluster);
|
||||
|
||||
/* console.log('Stolen data cluster!', shorthost, refreshToken); */
|
||||
|
||||
console.log(cluster.getMarkedEntries());
|
||||
|
||||
return (
|
||||
<div className="stolen-data-cluster-container">
|
||||
<header className="domains-container">
|
||||
|
@ -91,9 +91,6 @@ export default class ExtendedRequest {
|
||||
this.url = data.url;
|
||||
this.shorthost = getshorthost(data.url);
|
||||
this.requestBody = ((data as any).requestBody as undefined | RequestBody) || {};
|
||||
if (this.url.includes('criteo')) {
|
||||
console.log(this);
|
||||
}
|
||||
ExtendedRequest.by_id[data.requestId] = this;
|
||||
|
||||
this.data = Object.assign({}, data);
|
||||
|
Loading…
x
Reference in New Issue
Block a user