diff --git a/pkg/web/handler/task.go b/pkg/web/handler/task.go index a830839..6b10a71 100644 --- a/pkg/web/handler/task.go +++ b/pkg/web/handler/task.go @@ -46,8 +46,11 @@ func feedbackList(feedback ValidationFeedback) templ.Component { return templ.ComponentFunc(func(ctx context.Context, w io.Writer) error { for _, check := range feedback.Checks { if !check.Valid { - io.WriteString(w, `
`+check.Message+`
`) + io.WriteString(w, ``+"❌ "+check.Message+`
`) + } else { + io.WriteString(w, ``+"✅ "+check.Message+`
`) } + } return nil })