Skip to content

Commit a50dc3e

Browse files
committed
feat(ui): add success indicator dot to autofix request hint
Enhance the autofix request card by adding a green static dot next to the success hint message. This visual indicator improves clarity by making the success state more distinguishable for users.
1 parent d531b3c commit a50dc3e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

app/components/course-page/test-results-bar/autofix-request-card.hbs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,14 @@
77
<span class="text-lg font-semibold text-white">Generating custom hint...</span>
88
</div>
99
{{else if (eq status "success")}}
10-
<span class="text-lg font-semibold text-white">Hint: {{@autofixRequest.summary}}</span>
10+
<div class="flex items-start gap-2">
11+
<StaticDot @color="green" class="shrink-0 mt-2" />
12+
13+
<span class="text-lg font-semibold text-white">
14+
Hint:
15+
{{@autofixRequest.summary}}
16+
</span>
17+
</div>
1118
{{/if}}
1219
{{/animated-value}}
1320

0 commit comments

Comments
 (0)