|
@@ -1519,7 +1519,7 @@ class BootstrapTable {
|
|
|
this.header.fields.forEach((field, j) => {
|
|
this.header.fields.forEach((field, j) => {
|
|
|
const column = this.columns[j]
|
|
const column = this.columns[j]
|
|
|
let text = ''
|
|
let text = ''
|
|
|
- let value_ = Utils.getItemField(item, field, this.options.escape, column.escape)
|
|
|
|
|
|
|
+ const value_ = Utils.getItemField(item, field, this.options.escape, column.escape)
|
|
|
let value = ''
|
|
let value = ''
|
|
|
let type = ''
|
|
let type = ''
|
|
|
let cellStyle = {}
|
|
let cellStyle = {}
|
|
@@ -1546,10 +1546,6 @@ class BootstrapTable {
|
|
|
return
|
|
return
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- if (column.escape) {
|
|
|
|
|
- value_ = Utils.escapeHTML(value_)
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
// Style concat
|
|
// Style concat
|
|
|
if (csses.concat([this.header.styles[j]]).length) {
|
|
if (csses.concat([this.header.styles[j]]).length) {
|
|
|
styleToAdd_ += `${csses.concat([this.header.styles[j]]).join('; ')}`
|
|
styleToAdd_ += `${csses.concat([this.header.styles[j]]).join('; ')}`
|