10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-23 11:17:42 +02:00

Replace null with empty string if not exist in table

This commit is contained in:
Mickaël Véril 2019-12-18 17:51:53 +01:00
parent 2652b48d0f
commit 1253105391

View File

@ -257,7 +257,10 @@ draft: false
lang: 'en-US'
})).appendTo(td)
}
else {
else if(el==null){
$(td).text(String.empty)
}
else{
$(td).text(el)
}
$(row).append(td)