Compare commits

..

No commits in common. "5ae983c513355e0e46a15ac4622f05ba71cfabf2" and "974e7d6ae6c75c533af8a24742f98251eaf0f52d" have entirely different histories.

2 changed files with 5 additions and 10 deletions

View File

@ -23,14 +23,11 @@ function ClusterRangeSummary({ cluster }: { cluster: RequestCluster }) {
return ( return (
<> <>
{[ {[
"Pańskiego adresu IP",
range.includes("id") range.includes("id")
? "sztucznie nadanego id" + (has_cookie_ids ? " z cookie" : "") ? "sztucznie nadane id" + (has_cookie_ids ? " z cookie" : "")
: "", : "",
range.includes("history") range.includes("history") ? "część Pańskiej historii przeglądania" : "",
? "części Pańskiej historii przeglądania" range.includes("location") ? "informacje na temat Pana położenia" : "",
: "",
range.includes("location") ? "informacji na temat Pana położenia" : "",
] ]
.filter((e) => e !== "") .filter((e) => e !== "")
.join(", ")} .join(", ")}
@ -231,7 +228,7 @@ export default function EmailTemplate2({
<li> <li>
Osoby, których dane dotyczą, powinny mieć możliwość wyrażenia Osoby, których dane dotyczą, powinny mieć możliwość wyrażenia
sprzeciwu wobec przetwarzania ich danych do celów związanych z sprzeciwu wobec przetwarzania ich danych do celów związanych z
targetowaniem <strong>przed rozpoczęciem przetwarzania</strong> (zob.{" "} targetowaniem <em>przed</em> rozpoczęciem przetwarzania (zob.{" "}
<a href="https://edpb.europa.eu/system/files/2021-11/edpb_guidelines_082020_on_the_targeting_of_social_media_users_pl_0.pdf"> <a href="https://edpb.europa.eu/system/files/2021-11/edpb_guidelines_082020_on_the_targeting_of_social_media_users_pl_0.pdf">
Wytyczne 8/2020 EROD dotyczące targetowania użytkowników mediów Wytyczne 8/2020 EROD dotyczące targetowania użytkowników mediów
społecznościowych społecznościowych
@ -269,8 +266,6 @@ export default function EmailTemplate2({
.filter((cluster) => cluster.hasMarks()) .filter((cluster) => cluster.hasMarks())
.map((cluster) => ( .map((cluster) => (
<li key={cluster.id}> <li key={cluster.id}>
{" "}
style={{ paddingBottom: "1rem" }}
ujawniła pańskie dane w zakresie{" "} ujawniła pańskie dane w zakresie{" "}
<em> <em>
<ClusterRangeSummary {...{ cluster }} /> <ClusterRangeSummary {...{ cluster }} />

View File

@ -184,7 +184,7 @@ export class StolenDataEntry extends EventEmitter {
isRelatedToID() { isRelatedToID() {
return this.request.stolenData.some( return this.request.stolenData.some(
(entry) => entry.classification == "id" (entry) => (entry.classification = "id")
); );
} }