Skip to content

Commit 3a2aa6a

Browse files
committed
fix(custom-step): Fix proper asterisks displaying
1 parent d61483a commit 3a2aa6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ <h3 class="mb-2">{{ section.title }}</h3>
4444
<div class="flex align-items-baseline gap-1">
4545
<h3 class="mb-2">
4646
{{ q.displayText }}
47-
@if (q.required) {
47+
@if (!q.required) {
4848
<span class="text-red-500">*</span>
4949
}
5050
</h3>

0 commit comments

Comments
 (0)