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 'app/assets/javascripts/notebook/cells/output/html.vue')
-rw-r--r--app/assets/javascripts/notebook/cells/output/html.vue7
1 files changed, 2 insertions, 5 deletions
diff --git a/app/assets/javascripts/notebook/cells/output/html.vue b/app/assets/javascripts/notebook/cells/output/html.vue
index 8dc2d73af9b..b36761993ea 100644
--- a/app/assets/javascripts/notebook/cells/output/html.vue
+++ b/app/assets/javascripts/notebook/cells/output/html.vue
@@ -1,5 +1,5 @@
<script>
-import sanitize from 'sanitize-html';
+import { sanitize } from 'dompurify';
import Prompt from '../prompt.vue';
export default {
@@ -23,10 +23,7 @@ export default {
computed: {
sanitizedOutput() {
return sanitize(this.rawCode, {
- allowedTags: sanitize.defaults.allowedTags.concat(['img', 'svg']),
- allowedAttributes: {
- img: ['src'],
- },
+ ALLOWED_ATTR: ['src'],
});
},
showOutput() {