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/pipelines/pipeline_test_details.js')
-rw-r--r--app/assets/javascripts/pipelines/pipeline_test_details.js11
1 files changed, 9 insertions, 2 deletions
diff --git a/app/assets/javascripts/pipelines/pipeline_test_details.js b/app/assets/javascripts/pipelines/pipeline_test_details.js
index 46c7ec07d03..27ab2418440 100644
--- a/app/assets/javascripts/pipelines/pipeline_test_details.js
+++ b/app/assets/javascripts/pipelines/pipeline_test_details.js
@@ -8,8 +8,14 @@ Vue.use(Translate);
export const createTestDetails = (selector) => {
const el = document.querySelector(selector);
- const { blobPath, emptyStateImagePath, hasTestReport, summaryEndpoint, suiteEndpoint } =
- el?.dataset || {};
+ const {
+ blobPath,
+ emptyStateImagePath,
+ hasTestReport,
+ summaryEndpoint,
+ suiteEndpoint,
+ artifactsExpiredImagePath,
+ } = el?.dataset || {};
const testReportsStore = createTestReportsStore({
blobPath,
summaryEndpoint,
@@ -24,6 +30,7 @@ export const createTestDetails = (selector) => {
},
provide: {
emptyStateImagePath,
+ artifactsExpiredImagePath,
hasTestReport: parseBoolean(hasTestReport),
},
store: testReportsStore,