+
{g.check.label}
{g.children.length > 0 && {g.children}}
@@ -180,7 +193,7 @@ export function ChecklistView({ results }: { results: DocResult[] }) {
)}
{!g.check.passed && g.check.hint && (
-
+
{g.check.hint}
)}
@@ -190,13 +203,16 @@ export function ChecklistView({ results }: { results: DocResult[] }) {
{/* L2 children — always visible */}
{g.children.length > 0 && (
- {g.children.map((ch) => (
+ {g.children.map((ch) => {
+ const chInfo = ch.severity === 'INFO' && !ch.passed && !ch.skipped
+ return (
-
+
{ch.label}
{ch.skipped && ' (uebersprungen)'}
@@ -207,17 +223,19 @@ export function ChecklistView({ results }: { results: DocResult[] }) {
)}
{!ch.passed && !ch.skipped && ch.hint && (
-
- ))}
+ )
+ })}
)}
- ))}
+ )
+ })}
{r.word_count > 0 && (
{r.word_count} Woerter analysiert