Merge "Put pipeline icon to the left of the name"

This commit is contained in:
Zuul 2021-12-03 16:43:36 +00:00 committed by Gerrit Code Review
commit c70a08a9de
1 changed files with 1 additions and 2 deletions

View File

@ -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}
</>
)
}