Skip to content
Snippets Groups Projects
Commit dcc3c02b authored by Scott Hampton's avatar Scott Hampton 2️⃣ Committed by Erick Bajao
Browse files

Modify callout to allow for html

Modifying only the callout in the job app
page, since v-html should be used
sparingly.
parent df089f6c
2 merge requests!18942WIP: Resolve "Create API endpoint to generate and return personal access token",!18219Specify failing dependencies in the callout message
......@@ -6,7 +6,6 @@ import { isScrolledToBottom } from '~/lib/utils/scroll_utils';
import { polyfillSticky } from '~/lib/utils/sticky';
import bp from '~/breakpoints';
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 createStore from '../store';
import EmptyState from './empty_state.vue';
......@@ -25,7 +24,6 @@ export default {
store: createStore(),
components: {
CiHeader,
Callout,
EmptyState,
EnvironmentsBlock,
ErasedBlock,
......@@ -239,10 +237,11 @@ export default {
/>
</div>
<callout
<div
v-if="shouldRenderCalloutMessage && !hasUnmetPrerequisitesFailure"
:message="job.callout_message"
/>
class="bs-callout bs-callout-danger"
v-html="job.callout_message"
></div>
</header>
<!-- EO Header Section -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment