@duckduckgo/autoconsent
Advanced tools
Comparing version 10.6.2 to 10.6.3
@@ -144,4 +144,5 @@ /* eslint-disable no-undef */ | ||
if (extractedProjects) { | ||
for (const projectGid of extractedProjects.split(',')) { | ||
await asana.tasks.addProjectForTask(gid, { project: projectGid, insert_after: null }) | ||
for (const projectGidAndSection of extractedProjects.split(',')) { | ||
const [projectGid, sectionGid] = projectGidAndSection.split(':') | ||
await asana.tasks.addProjectForTask(gid, { project: projectGid, insert_after: null, section: sectionGid }) | ||
} | ||
@@ -148,0 +149,0 @@ } |
{ | ||
"manifest_version": 2, | ||
"name": "Autoconsent", | ||
"version": "2024.4.12", | ||
"version": "2024.4.23", | ||
"background": { | ||
@@ -6,0 +6,0 @@ "scripts": [ |
{ | ||
"manifest_version": 3, | ||
"name": "Autoconsent", | ||
"version": "2024.4.12", | ||
"version": "2024.4.23", | ||
"background": { | ||
@@ -6,0 +6,0 @@ "service_worker": "background.bundle.js" |
{ | ||
"name": "@duckduckgo/autoconsent", | ||
"version": "10.6.2", | ||
"version": "10.6.3", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/autoconsent.cjs.js", |
@@ -7,7 +7,7 @@ { | ||
"optIn": [ | ||
{ "click": ".iubenda-cs-accept-btn" } | ||
{ "waitForThenClick": ".iubenda-cs-accept-btn" } | ||
], | ||
"optOut": [ | ||
{ | ||
"click": ".iubenda-cs-customize-btn" | ||
"waitForThenClick": ".iubenda-cs-customize-btn" | ||
}, | ||
@@ -18,3 +18,3 @@ { | ||
{ | ||
"click": "#iubFooterBtn" | ||
"waitForThenClick": "#iubFooterBtn" | ||
} | ||
@@ -21,0 +21,0 @@ ], |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
2383475
66447