Compare commits

..

3 Commits

2 changed files with 10 additions and 5 deletions

View File

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

View File

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