10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-10-02 22:40:59 +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' lang: 'en-US'
})).appendTo(td) })).appendTo(td)
} }
else { else if(el==null){
$(td).text(String.empty)
}
else{
$(td).text(el) $(td).text(el)
} }
$(row).append(td) $(row).append(td)