Commit 3377a7fa authored by rifkaki's avatar rifkaki

ytd

parent 14f32693
......@@ -379,7 +379,7 @@ export default class SummaryOfTriputra extends Component {
item.npat_fy_last_year,
item.npat_fy_percent_of_last_year,
item.order,
item.is_approved
item.is_approved == undefined ? true : item.is_approved,
])
}
if (item.children !== null) {
......@@ -437,7 +437,7 @@ export default class SummaryOfTriputra extends Component {
item.npat_fy_last_year,
item.npat_fy_percent_of_last_year,
item.order,
item.is_approved
item.is_approved == undefined ? true : item.is_approved,
])
if (item.children !== null) {
if (item.children.length > 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment