Fix uppercase label

This commit is contained in:
Alexander Zobnin
2023-03-21 13:03:14 +01:00
parent 418fe7a70d
commit f1c3c57c9f

View File

@@ -28,7 +28,7 @@ export const ProblemHostsDescription = ({ hosts }: ProblemHostsProps) => {
const styles = useStyles2(getStyles);
return (
<>
<span className={styles.label}>Host Description:&nbsp;</span>
<span className={styles.label}>Host description:&nbsp;</span>
{hosts.map((h, i) => (
<span key={`${h.hostid}-${i}`}>{h.description}</span>
))}