From cb7328479178ab65bf01a9950df7badc3418f902 Mon Sep 17 00:00:00 2001 From: Vadim73i <55870906+Vadim73i@users.noreply.github.com> Date: Wed, 4 Sep 2024 12:11:21 +0300 Subject: [PATCH 1/2] Update CODEOWNERS --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index b6bd26a07..5fc5d08b2 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @AmsterGet @Vadim73i @pressayuliya +* @AmsterGet @pressayuliya From 2a414db3465dad8de0f2e97a3d0cd7cecbc5d662 Mon Sep 17 00:00:00 2001 From: Ilya Date: Mon, 30 Sep 2024 10:05:58 +0200 Subject: [PATCH 2/2] Temporary remove cookie pro scripts --- plugins/plugin-cookie-pro/index.js | 59 +++++++++++++++--------------- 1 file changed, 30 insertions(+), 29 deletions(-) diff --git a/plugins/plugin-cookie-pro/index.js b/plugins/plugin-cookie-pro/index.js index 01d8d5724..0e4b218d0 100644 --- a/plugins/plugin-cookie-pro/index.js +++ b/plugins/plugin-cookie-pro/index.js @@ -1,34 +1,35 @@ export default function pluginCookiePro() { return { name: 'plugin-cookie-pro', - injectHtmlTags() { - return { - headTags: [ - { - tagName: 'script', - attributes: { - src: 'https://cookie-cdn.cookiepro.com/consent/77055ecd-ec2c-461a-bf1c-3e84d715e668/OtAutoBlock.js', - defer: true, - }, - }, - { - tagName: 'script', - attributes: { - src: 'https://cookie-cdn.cookiepro.com/scripttemplates/otSDKStub.js', - defer: true, - charset: 'UTF-8', - 'data-domain-script': '77055ecd-ec2c-461a-bf1c-3e84d715e668', - }, - }, - { - tagName: 'script', - innerHTML: `function OptanonWrapper() { }`, - }, - ], - }; - }, - getClientModules() { - return ['./index.css']; - }, + // Temporary disable until the issue with content interactivity fixed + // injectHtmlTags() { + // return { + // headTags: [ + // { + // tagName: 'script', + // attributes: { + // src: 'https://cookie-cdn.cookiepro.com/consent/77055ecd-ec2c-461a-bf1c-3e84d715e668/OtAutoBlock.js', + // defer: true, + // }, + // }, + // { + // tagName: 'script', + // attributes: { + // src: 'https://cookie-cdn.cookiepro.com/scripttemplates/otSDKStub.js', + // defer: true, + // charset: 'UTF-8', + // 'data-domain-script': '77055ecd-ec2c-461a-bf1c-3e84d715e668', + // }, + // }, + // { + // tagName: 'script', + // innerHTML: `function OptanonWrapper() { }`, + // }, + // ], + // }; + // }, + // getClientModules() { + // return ['./index.css']; + // }, }; }