diff --git a/front/devices.php b/front/devices.php index 61d91020..52c1619c 100755 --- a/front/devices.php +++ b/front/devices.php @@ -799,11 +799,18 @@ function initializeDatatable (status) { 'createdCell': function (td, cellData, rowData, row, col) { // console.log(cellData) + + var displayedValue = cellData; + + if(isEmpty(displayedValue)) + { + displayedValue = "N/A" + } $(td).html ( ` - ${cellData} + ${displayedValue} ` );