mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-25 13:53:48 +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'
|
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)
|
||||||
|
Loading…
Reference in New Issue
Block a user