Commit 9895b66a authored by shampton's avatar shampton

Fix frontend to use callout component

Use `v-html` in a div, utilizing the slot of the
callout component.
parent 2274ee25
...@@ -6,6 +6,7 @@ import { isScrolledToBottom } from '~/lib/utils/scroll_utils'; ...@@ -6,6 +6,7 @@ import { isScrolledToBottom } from '~/lib/utils/scroll_utils';
import { polyfillSticky } from '~/lib/utils/sticky'; import { polyfillSticky } from '~/lib/utils/sticky';
import bp from '~/breakpoints'; import bp from '~/breakpoints';
import CiHeader from '~/vue_shared/components/header_ci_component.vue'; import CiHeader from '~/vue_shared/components/header_ci_component.vue';
import Callout from '~/vue_shared/components/callout.vue';
import Icon from '~/vue_shared/components/icon.vue'; import Icon from '~/vue_shared/components/icon.vue';
import createStore from '../store'; import createStore from '../store';
import EmptyState from './empty_state.vue'; import EmptyState from './empty_state.vue';
...@@ -24,6 +25,7 @@ export default { ...@@ -24,6 +25,7 @@ export default {
store: createStore(), store: createStore(),
components: { components: {
CiHeader, CiHeader,
Callout,
EmptyState, EmptyState,
EnvironmentsBlock, EnvironmentsBlock,
ErasedBlock, ErasedBlock,
...@@ -237,11 +239,9 @@ export default { ...@@ -237,11 +239,9 @@ export default {
/> />
</div> </div>
<div <callout v-if="shouldRenderCalloutMessage && !hasUnmetPrerequisitesFailure">
v-if="shouldRenderCalloutMessage && !hasUnmetPrerequisitesFailure" <div v-html="job.callout_message"></div>
class="bs-callout bs-callout-danger" </callout>
v-html="job.callout_message"
></div>
</header> </header>
<!-- EO Header Section --> <!-- EO Header Section -->
......
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