1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-03-15 16:29:16 +01:00

Fix: null data should be returned as an empty string for HTML display

This commit is contained in:
Allan Jardine 2011-05-09 18:24:23 +01:00
parent d242d9cad4
commit 341f6784f6

View File

@ -6526,8 +6526,8 @@
} }
} }
if ( sSpecific == 'display' ) { if ( sSpecific == 'display' && sData === null ) {
return sData+''; return '';
} }
return sData; return sData;
} }