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

FIx bug in multipledataset

This commit is contained in:
Mickaël Véril 2020-02-01 17:54:09 +01:00
parent 873d88763f
commit 3c9ae18f8c

View File

@ -415,10 +415,10 @@ draft: false
td.append($("<div/>", { title: "unsafe value", style: "float: left; font-family: color-emoji;" }).text('⚠'))
}
if (unsafe && !$("#cb_unsafe").is(':checked')) {
td.append($("<s/>").append(val))
td.append($("<s/>").append(val.toString()))
}
else {
td.append(val)
td.append(val.toString())
}
}
tr.append(td)