Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
9895b66a
Commit
9895b66a
authored
Oct 17, 2019
by
shampton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix frontend to use callout component
Use `v-html` in a div, utilizing the slot of the callout component.
parent
2274ee25
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
app/assets/javascripts/jobs/components/job_app.vue
app/assets/javascripts/jobs/components/job_app.vue
+5
-5
No files found.
app/assets/javascripts/jobs/components/job_app.vue
View file @
9895b66a
...
...
@@ -6,6 +6,7 @@ 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
'
;
...
...
@@ -24,6 +25,7 @@ export default {
store
:
createStore
(),
components
:
{
CiHeader
,
Callout
,
EmptyState
,
EnvironmentsBlock
,
ErasedBlock
,
...
...
@@ -237,11 +239,9 @@ export default {
/>
</div>
<div
v-if=
"shouldRenderCalloutMessage && !hasUnmetPrerequisitesFailure"
class=
"bs-callout bs-callout-danger"
v-html=
"job.callout_message"
></div>
<callout
v-if=
"shouldRenderCalloutMessage && !hasUnmetPrerequisitesFailure"
>
<div
v-html=
"job.callout_message"
></div>
</callout>
</header>
<!-- EO Header Section -->
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment