Lint fixes
parent
f4994764fb
commit
1e81630ee3
|
@ -960,7 +960,7 @@ export default {
|
|||
let column = this.columns[i];
|
||||
if (column.exportable !== false && column.field) {
|
||||
let cellData = ObjectUtils.resolveFieldData(record, column.field);
|
||||
|
||||
|
||||
if (cellData != null) {
|
||||
if (this.exportFunction) {
|
||||
cellData = this.exportFunction({
|
||||
|
@ -973,10 +973,10 @@ export default {
|
|||
}
|
||||
else
|
||||
cellData = '';
|
||||
|
||||
|
||||
|
||||
|
||||
csv += '"' + cellData + '"';
|
||||
|
||||
|
||||
if (i < (this.columns.length - 1)) {
|
||||
csv += this.csvSeparator;
|
||||
}
|
||||
|
|
|
@ -81,7 +81,7 @@ export default {
|
|||
let tabHeader = this.$refs.nav.children[activeTabIndex];
|
||||
this.$refs.inkbar.style.width = DomHandler.getWidth(tabHeader) + 'px';
|
||||
this.$refs.inkbar.style.left = DomHandler.getOffset(tabHeader).left - DomHandler.getOffset(this.$refs.nav).left + 'px';
|
||||
}
|
||||
}
|
||||
else {
|
||||
this.$refs.inkbar.style.width = '0px';
|
||||
this.$refs.inkbar.style.left = '0px';
|
||||
|
|
|
@ -194,7 +194,7 @@ export default class DomHandler {
|
|||
if (top < 0) {
|
||||
top = windowScrollTop;
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
top = targetOuterHeight + targetOffset.top + windowScrollTop;
|
||||
element.style.transformOrigin = 'top';
|
||||
|
|
|
@ -70,7 +70,7 @@
|
|||
|
||||
<div class="card">
|
||||
<h5>Checkbox</h5>
|
||||
|
||||
|
||||
<DataTable :value="products" :selection.sync="selectedProducts3" dataKey="id">
|
||||
<Column selectionMode="multiple" headerStyle="width: 3em"></Column>
|
||||
<Column field="code" header="Code"></Column>
|
||||
|
|
Loading…
Reference in New Issue