Skip to content

Commit f19350e

Browse files
fix(bugs): ang-1026 fixed (#649)
1 parent 1cf5f00 commit f19350e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/app/features/registries/components/custom-step/custom-step.component.html

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,13 @@ <h3 class="mb-2">
4545
<span class="text-red-500">*</span>
4646
}
4747
</h3>
48-
49-
@if (q.helpText) {
50-
<osf-info-icon [tooltipText]="q.helpText" tooltipPosition="top"></osf-info-icon>
51-
}
5248
</div>
5349
@if (q.paragraphText) {
5450
<p class="mb-3">{{ q.paragraphText }}</p>
5551
}
52+
@if (q.helpText && q.fieldType !== FieldType.Radio && q.fieldType !== FieldType.Checkbox) {
53+
<p>{{ q.helpText }}</p>
54+
}
5655
</label>
5756
@if (q.exampleText) {
5857
<p-inplace #inplaceRef styleClass="mb-4">

0 commit comments

Comments
 (0)