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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-11-15 21:09:06 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-11-15 21:09:06 +0300
commita46bff51d5262a5c05c460f0c7c43a5f2405cd5d (patch)
tree449dc297ae191d319c6d869897fe1f186781ab9d /app/assets/javascripts/snippets/components
parent3f9e76c30fd80f01bbe2e69569851fa5e3ea71d6 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/snippets/components')
-rw-r--r--app/assets/javascripts/snippets/components/snippet_blob_edit.vue1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/assets/javascripts/snippets/components/snippet_blob_edit.vue b/app/assets/javascripts/snippets/components/snippet_blob_edit.vue
index 9b0a1db23f2..3a85f66cfa2 100644
--- a/app/assets/javascripts/snippets/components/snippet_blob_edit.vue
+++ b/app/assets/javascripts/snippets/components/snippet_blob_edit.vue
@@ -56,6 +56,7 @@ export default {
.get(url, {
// This prevents axios from automatically JSON.parse response
transformResponse: [(f) => f],
+ headers: { 'Cache-Control': 'no-cache' },
})
.then((res) => {
this.notifyAboutUpdates({ content: res.data });