Skip to content

Commit

Permalink
날짜 양식 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kkyh12180 committed Nov 12, 2023
1 parent fd91e8c commit ff2beef
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/html/initial.html
Original file line number Diff line number Diff line change
Expand Up @@ -855,14 +855,15 @@ <h1 class="footer-logo">
for (const s in schedule) {
// console.log(`${s}, ${Object.keys(schedule[s]).length}`)
schedule_count = Object.keys(schedule[s]).length;
var one_res = "<tr>"
var one_res = "<tr>";
var dep_date_time = schedule[s].deptime;
for (const item in schedule[s]) {
var len = Object.keys(schedule[s][item]).length;
// console.log(`${len}`);
one_res += `<td>${schedule[s][item]}</td>`;
// console.log(one_res)
}
one_res += `<td> <button class="voicecheck" onclick="submitRowAsync('${dep}', '${arr}', '${date}', '${time}')">시나리오 확인</button></td>`
one_res += `<td> <button class="voicecheck" onclick="submitRowAsync('${dep}', '${arr}', '${ dep_date_time}')">시나리오 확인</button></td>`
one_res += "</tr>"
res_str += one_res
}
Expand Down

0 comments on commit ff2beef

Please sign in to comment.