Browse Source

비행계획서 console에러 수정

pull/2/head
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>
</thead>
<tbody>
{groups.map((i) => {
{groups.map((i, index) => {
return (
<tr>
<tr key={index}>
<td >{i.fcstTime.substring(0, 2)}</td>
{i.category[4].fcstValue == "0" ?
<td>

Loading…
Cancel
Save