Skip to content

Commit 63e5c26

Browse files
committed
fix for feedback
1 parent 5c3328e commit 63e5c26

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/CIPipelineN/CustomImageTags.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ function CustomImageTags({
209209
<hr className="mt-8 mb-8" />
210210
<div className="dc__italic-font-style cn-7">
211211
{`{X}`} = {formData.customTag.counterX} in the next trigger
212-
{isCDBuild && formData?.customTagStage
212+
{isCDBuild && formData.customTagStage
213213
? ` of ${getCDStageTypeSelectorValue(formData.customTagStage).label}`
214214
: ''}
215215
</div>

src/components/app/details/triggerView/cdMaterial.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1430,7 +1430,7 @@ export default function CDMaterial({
14301430
<div className="flex left column">
14311431
{mat.filterState === FilterStates.ALLOWED ? (
14321432
<ConditionalWrap
1433-
condition={mat?.imagePath?.length > 0}
1433+
condition={mat.imagePath?.length > 0}
14341434
wrap={(children) => (
14351435
<Tippy
14361436
className="default-tt dc__mxw-500"

src/components/cdPipeline/NewCDPipeline.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default function NewCDPipeline({
7979
const noStrategyAvailable = useRef(false)
8080
const parentPipelineTypeFromURL = urlParams.get('parentPipelineType')
8181
const parentPipelineId = urlParams.get('parentPipelineId')
82-
const [ savedCustomTagPattern, setSavedCustomTagPattern ] = React.useState<string>('')
82+
const [ savedCustomTagPattern, setSavedCustomTagPattern ] = useState<string>('')
8383

8484
let { appId, workflowId, ciPipelineId, cdPipelineId } = useParams<{
8585
appId: string

0 commit comments

Comments
 (0)