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/store/mutations.js')
-rw-r--r--app/assets/javascripts/jobs/store/mutations.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/assets/javascripts/jobs/store/mutations.js b/app/assets/javascripts/jobs/store/mutations.js
index 87c00ad4d70..b7d7006ee61 100644
--- a/app/assets/javascripts/jobs/store/mutations.js
+++ b/app/assets/javascripts/jobs/store/mutations.js
@@ -33,8 +33,7 @@ export default {
// the job log response will not have a defined
// html or size. We keep the old value otherwise these
// will be set to `null`
-
- state.jobLog = log.lines ? logLinesParser(log.lines) : state.jobLog;
+ state.jobLog = log.lines ? logLinesParser(log.lines, [], window.location.hash) : state.jobLog;
state.jobLogSize = log.size || state.jobLogSize;
}