summaryrefslogtreecommitdiff
path: root/web/src/containers/status
diff options
context:
space:
mode:
authorFelix Schmidt <felix.fs.schmidt@bmw.de>2019-08-23 07:14:11 +0200
committerFelix Schmidt <felix.fs.schmidt@bmw.de>2019-08-23 13:25:26 +0200
commitcf1642b7472dce690a3de2d0ae938064397172c5 (patch)
tree8be0406d6e93fd4746a3a7bf635d5de2d20403d9 /web/src/containers/status
parentb53b6badd9bca09f41b9bbbf8cbd6e430a221cae (diff)
downloadzuul-cf1642b7472dce690a3de2d0ae938064397172c5.tar.gz
Improve visualization retry attempts in UI
As a follow-up on https://review.opendev.org/#/c/660960/, this will add the keyword 'attempt' to the number of retries to clarify the meaning of the number in the brackets. Change-Id: Ib8f2492bc91b418eb27b956ed8867282e72a9474
Diffstat (limited to 'web/src/containers/status')
-rw-r--r--web/src/containers/status/ChangePanel.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/containers/status/ChangePanel.jsx b/web/src/containers/status/ChangePanel.jsx
index a0261f37b..6896df0e2 100644
--- a/web/src/containers/status/ChangePanel.jsx
+++ b/web/src/containers/status/ChangePanel.jsx
@@ -236,7 +236,7 @@ class ChangePanel extends React.Component {
const { tenant } = this.props
let job_name = job.name
if (job.tries > 1) {
- job_name = job_name + ' (' + job.tries + ')'
+ job_name = job_name + ' (' + job.tries + '. attempt)'
}
let name = ''
if (job.result !== null) {