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 {