Browse Source

Handling null weight

pull/2/head
Wahyu Ramadhan 2 years ago
parent
commit
d15b1b2536
  1. 3
      src/views/SimproV2/CreatedProyek/ImportActivity/index.js

3
src/views/SimproV2/CreatedProyek/ImportActivity/index.js

@ -132,6 +132,9 @@ const ImportActivity = ({ params }) => {
}
if(prop == 'weight'){
if (columnData == null) {
columnData = 0;
}
columnData = columnData * 100
}

Loading…
Cancel
Save