|
|
@@ -1514,7 +1514,7 @@ class BootstrapTable {
|
|
|
this.header.fields.forEach((field, j) => {
|
|
|
const column = this.columns[j]
|
|
|
let text = ''
|
|
|
- let value_ = Utils.getItemField(item, field, column.escape ?? this.options.escape)
|
|
|
+ let value_ = Utils.getItemField(item, field, this.options.escape, column.escape)
|
|
|
let value = ''
|
|
|
let type = ''
|
|
|
let cellStyle = {}
|
|
|
@@ -1794,7 +1794,7 @@ class BootstrapTable {
|
|
|
const fields = this.getVisibleFields()
|
|
|
const field = fields[index - Utils.getDetailViewIndexOffset(this.options)]
|
|
|
const column = this.columns[this.fieldsColumnsIndex[field]]
|
|
|
- const value = Utils.getItemField(item, field, column.escape ?? this.options.escape)
|
|
|
+ const value = Utils.getItemField(item, field, this.options.escape, column.escape)
|
|
|
|
|
|
if ($td.find('.detail-icon').length) {
|
|
|
return
|