Skip to content

Commit

Permalink
reduce spacing, add default indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveDarsa committed Jul 4, 2024
1 parent 1316d68 commit 43a501d
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions src/components/Organizations/NewProject/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,13 +187,18 @@ const OrgNewProject = ({
overlayClassName="orgTooltip lg"
title={
<>
<p> Which Pull Requests should be deployed, can be one of::</p>
<p> - true - all branches are deployed </p>
<p>- false - no branches are deployed</p>
<p>
<b>[Default: true]</b>
<br />
<span> Which Pull Requests should be deployed, can be one of:</span>
<br />
<span> - true - all branches are deployed </span>
<br />
<span>- false - no branches are deployed</span>
<br />
<span>
- regex of all branches that can be deployed (including production), example:
'^(main|staging)$'
</p>
</span>
</>
}
placement="right"
Expand All @@ -216,10 +221,15 @@ const OrgNewProject = ({
overlayClassName="orgTooltip lg"
title={
<>
<p> Which branches should be deployed, can be one of:</p>
<p> - true - all pull requests are deployed </p>
<p> - false - no pull requests are deployed</p>
<p>- regex of all Pull Request titles that can be deployed, example: '[BUILD]'</p>
<b>[Default: true]</b>
<br />
<span> Which branches should be deployed, can be one of:</span>
<br />
<span> - true - all pull requests are deployed </span>
<br />
<span> - false - no pull requests are deployed</span>
<br />
<span>- regex of all Pull Request titles that can be deployed, example: '[BUILD]'</span>
</>
}
placement="right"
Expand Down

0 comments on commit 43a501d

Please sign in to comment.