Commit 357ed717 authored by Dheeraj Joshi's avatar Dheeraj Joshi Committed by David O'Regan

Switch to v-safe-html for rendering job output

parent c74386d9
<script>
import { GlTooltipDirective, GlButton, GlIcon } from '@gitlab/ui';
import { GlTooltipDirective, GlButton, GlIcon, GlSafeHtmlDirective } from '@gitlab/ui';
import { throttle } from 'lodash';
import { mapActions, mapState } from 'vuex';
import { __ } from '../../../locale';
......@@ -14,6 +14,7 @@ const scrollPositions = {
export default {
directives: {
GlTooltip: GlTooltipDirective,
SafeHtml: GlSafeHtmlDirective,
},
components: {
GlButton,
......@@ -100,8 +101,8 @@ export default {
<pre ref="buildJobLog" class="build-log mb-0 h-100 mr-3" @scroll="scrollBuildLog">
<code
v-show="!detailJob.isLoading"
v-safe-html="jobOutput"
class="bash"
v-html="jobOutput /* eslint-disable-line vue/no-v-html */"
>
</code>
<div
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment