Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'patches/@rails+ujs+7.0.8.patch')
-rw-r--r--patches/@rails+ujs+7.0.8.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/patches/@rails+ujs+7.0.8.patch b/patches/@rails+ujs+7.0.8.patch
new file mode 100644
index 00000000000..65a4eb029b8
--- /dev/null
+++ b/patches/@rails+ujs+7.0.8.patch
@@ -0,0 +1,16 @@
+diff --git a/node_modules/@rails/ujs/lib/assets/compiled/rails-ujs.js b/node_modules/@rails/ujs/lib/assets/compiled/rails-ujs.js
+index d428163..010eaa5 100644
+--- a/node_modules/@rails/ujs/lib/assets/compiled/rails-ujs.js
++++ b/node_modules/@rails/ujs/lib/assets/compiled/rails-ujs.js
+@@ -281,11 +281,6 @@ Released under the MIT license
+ try {
+ response = JSON.parse(response);
+ } catch (error) {}
+- } else if (type.match(/\b(?:java|ecma)script\b/)) {
+- script = document.createElement('script');
+- script.setAttribute('nonce', cspNonce());
+- script.text = response;
+- document.head.appendChild(script).parentNode.removeChild(script);
+ } else if (type.match(/\b(xml|html|svg)\b/)) {
+ parser = new DOMParser();
+ type = type.replace(/;.+/, '');