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/jobs/components/table/index.js')
-rw-r--r--app/assets/javascripts/jobs/components/table/index.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/app/assets/javascripts/jobs/components/table/index.js b/app/assets/javascripts/jobs/components/table/index.js
index b6b3bb6d379..05d6ebfd6d6 100644
--- a/app/assets/javascripts/jobs/components/table/index.js
+++ b/app/assets/javascripts/jobs/components/table/index.js
@@ -16,13 +16,21 @@ export default (containerId = 'js-jobs-table') => {
return false;
}
- const { fullPath, jobCounts, jobStatuses } = containerEl.dataset;
+ const {
+ fullPath,
+ jobCounts,
+ jobStatuses,
+ pipelineEditorPath,
+ emptyStateSvgPath,
+ } = containerEl.dataset;
return new Vue({
el: containerEl,
apolloProvider,
provide: {
+ emptyStateSvgPath,
fullPath,
+ pipelineEditorPath,
jobStatuses: JSON.parse(jobStatuses),
jobCounts: JSON.parse(jobCounts),
},