Browse Source

Fix date

pull/2/head
Wahyu Ramadhan 2 years ago
parent
commit
b954abcfaa
  1. 2
      src/views/Report/k3/index.js

2
src/views/Report/k3/index.js

@ -451,7 +451,7 @@ export default class index extends Component {
return ( return (
<tr key={n.id}> <tr key={n.id}>
<td>{ n.join_first_name ? n.join_first_name : "-" }</td> <td>{ n.join_first_name ? n.join_first_name : "-" }</td>
<td>{ n.report_date ? moment(n.report_date).format("DD-MM-YYYY HH:mm:ss") : "-" }</td> <td>{n.report_date ? moment(n.report_date).format("DD-MM-YYYY") : "-"}</td>
<td>{ n.k3_checked.length ? n.k3_checked.join() : "-"}</td> <td>{ n.k3_checked.length ? n.k3_checked.join() : "-"}</td>
<td>{ n.k3_not_checked.length ? n.k3_not_checked.join() : "-"}</td> <td>{ n.k3_not_checked.length ? n.k3_not_checked.join() : "-"}</td>
<td>{ n.description ? n.description : "-"}</td> <td>{ n.description ? n.description : "-"}</td>

Loading…
Cancel
Save