Browse Source

비행계획서 console에러 수정

ctrlDraw
sanguu(박상현) 2 years ago
parent
commit
787c673145
  1. 4
      src/components/basis/flight/plan/TodayWeather.js

4
src/components/basis/flight/plan/TodayWeather.js

@ -67,9 +67,9 @@ export function TodayWeather({ todayData }) {
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
{groups.map((i) => { {groups.map((i, index) => {
return ( return (
<tr> <tr key={index}>
<td >{i.fcstTime.substring(0, 2)}</td> <td >{i.fcstTime.substring(0, 2)}</td>
{i.category[4].fcstValue == "0" ? {i.category[4].fcstValue == "0" ?
<td> <td>

Loading…
Cancel
Save