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

Fix ⚠ at left by using span instead of div

This commit is contained in:
Mickaël Véril 2020-02-04 10:35:12 +01:00
parent 48574634cd
commit f9bf435b80

View File

@ -421,7 +421,7 @@ draft: false
if (kv !== undefined) {
const [val, unsafe] = kv[1]
if (unsafe) {
td.append($("<div/>", { title: "unsafe value", style: "float: left; font-family: color-emoji;" }).text('⚠'))
td.append($("<span/>", { title: "unsafe value", style: "font-family: color-emoji;" }).text('⚠'))
}
if (unsafe && !$("#cb_unsafe").is(':checked')) {
td.append($("<s/>").append(val.toString()))