summaryrefslogtreecommitdiff
path: root/web/src/containers/status
diff options
context:
space:
mode:
authorJames E. Blair <jim@acmegating.com>2021-12-02 09:30:47 -0800
committerJames E. Blair <jim@acmegating.com>2021-12-02 09:30:47 -0800
commit672f6b7f0bd3db30cc8b1d7ab1bbaed7fcbced4f (patch)
tree457e1e4bd74bd6268f5e2d3c87465d86f0a5e81a /web/src/containers/status
parent58252504c7baf0eef368461854b8bea9249dc9ca (diff)
downloadzuul-672f6b7f0bd3db30cc8b1d7ab1bbaed7fcbced4f.tar.gz
Put pipeline icon to the left of the name
This better matches our use of icons elsewhere (example: build list table column header). It also separates the icon from the queue length indicator which reads sort of like an icon as well. Change-Id: Ib460826e657ab3c9d36e7f2734c620f5afe43486
Diffstat (limited to 'web/src/containers/status')
-rw-r--r--web/src/containers/status/Pipeline.jsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/web/src/containers/status/Pipeline.jsx b/web/src/containers/status/Pipeline.jsx
index 00c79ef25..4eecfe137 100644
--- a/web/src/containers/status/Pipeline.jsx
+++ b/web/src/containers/status/Pipeline.jsx
@@ -167,8 +167,6 @@ class Pipeline extends React.Component {
const Icon = pl_config.icon
return (
<>
- {pipeline.name}
- &nbsp;
<Tooltip
position="bottom"
content={<div><strong>{pl_config.help_title}</strong><p>{pl_config.help}</p></div>}
@@ -176,6 +174,7 @@ class Pipeline extends React.Component {
<Icon />
</Tooltip>
&nbsp;
+ {pipeline.name}
</>
)
}