File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
src/components/BuildConfigCreateEditPage Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -607,6 +607,15 @@ export const BuildConfigCreateEditPage = ({ isEditPage = false }: IBuildConfigCr
607
607
isRequired
608
608
label = { buildConfigEntityAttributes . buildType . title }
609
609
fieldId = { buildConfigEntityAttributes . buildType . id }
610
+ labelIcon = {
611
+ < TooltipWrapper
612
+ tooltip = {
613
+ < >
614
+ To view more information about { buildTypeData . MVN_RPM . title } , select an { buildTypeData . MVN_RPM . id } option.
615
+ </ >
616
+ }
617
+ />
618
+ }
610
619
>
611
620
< Select
612
621
id = { buildConfigEntityAttributes . buildType . id }
@@ -620,6 +629,17 @@ export const BuildConfigCreateEditPage = ({ isEditPage = false }: IBuildConfigCr
620
629
) ) }
621
630
</ Select >
622
631
< FormInputHelperText variant = "error" > { getFieldErrors ( buildConfigEntityAttributes . buildType . id ) } </ FormInputHelperText >
632
+ < FormInputHelperText variant = "default" >
633
+ { getFieldValue ( buildConfigEntityAttributes . buildType . id ) === buildTypeData . MVN_RPM . id ? (
634
+ < >
635
+ The { buildTypeData . MVN_RPM . title } build is executing the alignment phase using PME and running Maven within the
636
+ builder pod. For more detail on the build phase, please refer to the{ ' ' }
637
+ < a href = "https://project-ncl.github.io/rpm-builder-maven-plugin/" target = "_blank" rel = "noopener noreferrer" >
638
+ RPM Builder Maven Plugin documentation < ExternalLinkAltIcon />
639
+ </ a >
640
+ </ >
641
+ ) : null }
642
+ </ FormInputHelperText >
623
643
</ FormGroup >
624
644
625
645
< FormGroup
You can’t perform that action at this time.
0 commit comments