mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-25 05:43:46 +01:00
Replace null with empty string if not exist in table
This commit is contained in:
parent
2652b48d0f
commit
1253105391
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user