|
@@ -75,7 +75,7 @@ jQuery.fn.dataTableExt.oApi.fnSetFilteringDelay = function ( oSettings, iDelay )
|
|
|
|
|
|
function renderHadoopDate(data, type, full) {
|
|
|
if (type === 'display' || type === 'filter') {
|
|
|
- if(data === '0') {
|
|
|
+ if(data === '0'|| data === '-1') {
|
|
|
return "N/A";
|
|
|
}
|
|
|
return new Date(parseInt(data)).toUTCString();
|
|
@@ -143,4 +143,4 @@ function parseHadoopProgress(data, type, full) {
|
|
|
}
|
|
|
//Return the title attribute for 'sort', 'filter', 'type' and undefined
|
|
|
return data.split("'")[1];
|
|
|
-}
|
|
|
+}
|