summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jobs/store
diff options
context:
space:
mode:
authorTim Zallmann <tzallmann@gitlab.com>2018-10-12 17:16:47 +0000
committerTim Zallmann <tzallmann@gitlab.com>2018-10-12 17:16:47 +0000
commit1103f589f0a77bf11ca3103165fb287a6d092eb5 (patch)
tree5c1d0211192a7e9524d3684f0cdd5f1aa5654279 /app/assets/javascripts/jobs/store
parent7e342757e283a6fe552688351580ec6d6700e58f (diff)
parent85c30d742cec72466389a77a2df8d42e3c0075d7 (diff)
downloadgitlab-ce-1103f589f0a77bf11ca3103165fb287a6d092eb5.tar.gz
Merge branch '52614-update-job-started-check' into 'master'
Updates the check for started in job header See merge request gitlab-org/gitlab-ce!22329
Diffstat (limited to 'app/assets/javascripts/jobs/store')
-rw-r--r--app/assets/javascripts/jobs/store/getters.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/jobs/store/getters.js b/app/assets/javascripts/jobs/store/getters.js
index afe5f88b292..9f4f372e3d2 100644
--- a/app/assets/javascripts/jobs/store/getters.js
+++ b/app/assets/javascripts/jobs/store/getters.js
@@ -22,10 +22,10 @@ export const shouldRenderCalloutMessage = state =>
!_.isEmpty(state.job.status) && !_.isEmpty(state.job.callout_message);
/**
- * When job has not started the key will be `false`
+ * When job has not started the key will be null
* When job started the key will be a string with a date.
*/
-export const jobHasStarted = state => !(state.job.started === false);
+export const shouldRenderTriggeredLabel = state => _.isString(state.job.started);
export const hasEnvironment = state => !_.isEmpty(state.job.deployment_status);