소스 검색

Fix tablas

wilitp 4 년 전
부모
커밋
d76da16779
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      app/src/components/data/GeneralPerSeason/index.tsx
  2. 1 1
      app/src/components/data/tables.module.css

+ 1 - 1
app/src/components/data/GeneralPerSeason/index.tsx

@@ -48,7 +48,7 @@ const TemperaturePerSeason: FC = () => {
       >
         {x.grados_acumulados ?? "-"}
       </td>
-      <td className={classes.cell}>{x.dias_igualar_temporada}</td>
+      <td className={classes.cell}>{x.dias_igualar_temporada ?? "-"}</td>
       <td
         className={classes.cell}
         style={{

+ 1 - 1
app/src/components/data/tables.module.css

@@ -16,7 +16,7 @@
 
 .widthSeven.table tr,
 .widthSeven.table thead {
-  grid-template-columns: repeat(7, 1fr);
+  grid-template-columns: 180px repeat(6, 1fr);
 }
 
 .table .threeSlot {