|
|
@@ -39,6 +39,9 @@ const DegreeDay: FC<DegreesProps> = () => {
|
|
|
<ResultTd value={x.months[1]} />
|
|
|
<ResultTd value={x.months[2]} />
|
|
|
<ResultTd value={x.months[3]} />
|
|
|
+ <td className={classes.cell}>
|
|
|
+ {x.data_percentage ? `${x.data_percentage}%` : "-"}
|
|
|
+ </td>
|
|
|
</tr>
|
|
|
));
|
|
|
|
|
|
@@ -47,7 +50,7 @@ const DegreeDay: FC<DegreesProps> = () => {
|
|
|
<h5>
|
|
|
Grados días promedio mensuales - {data ? data[0].station.title : null}
|
|
|
</h5>
|
|
|
- <table className={`${classes.table} ${classes.widthSeven}`}>
|
|
|
+ <table className={`${classes.table}`}>
|
|
|
<thead>
|
|
|
<th className={`${classes.cell} ${classes.dateCell}`}>Temporada</th>
|
|
|
<td className={classes.cell}>Octubre</td>
|
|
|
@@ -56,6 +59,7 @@ const DegreeDay: FC<DegreesProps> = () => {
|
|
|
<td className={classes.cell}>Enero</td>
|
|
|
<td className={classes.cell}>Febrero</td>
|
|
|
<td className={classes.cell}>Marzo</td>
|
|
|
+ <td className={classes.cell}>Porcentaje de datos</td>
|
|
|
</thead>
|
|
|
<tbody>{data && rows}</tbody>
|
|
|
</table>
|