Skip to content

Commit e31fa5b

Browse files
committed
All lowercase prop.
1 parent 545a171 commit e31fa5b

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

dist/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterat
111111
// Boolean just disable for priviate.
112112
"default": false
113113
},
114-
isTable: {
114+
istable: {
115115
type: Boolean,
116116
"default": false
117117
},
@@ -551,11 +551,11 @@ function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterat
551551
var _this$delta = this.delta,
552552
paddingTop = _this$delta.paddingTop,
553553
paddingBottom = _this$delta.paddingBottom;
554-
var isTable = this.isTable;
555-
var wtag = isTable ? 'div' : this.wtag;
556-
var rtag = isTable ? 'div' : this.rtag;
554+
var istable = this.istable;
555+
var wtag = istable ? 'div' : this.wtag;
556+
var rtag = istable ? 'div' : this.rtag;
557557

558-
if (isTable) {
558+
if (istable) {
559559
list = [h('table', [h('tbody', list)])];
560560
}
561561

src/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
type: [Function, Boolean], // Boolean just disable for priviate.
100100
default: false
101101
},
102-
isTable: {
102+
istable: {
103103
type: Boolean,
104104
default: false
105105
},
@@ -563,10 +563,10 @@
563563
let list = this.filter(h)
564564
const { paddingTop, paddingBottom } = this.delta
565565

566-
const isTable = this.isTable
567-
const wtag = isTable ? 'div' : this.wtag
568-
const rtag = isTable ? 'div' : this.rtag
569-
if (isTable) {
566+
const istable = this.istable
567+
const wtag = istable ? 'div' : this.wtag
568+
const rtag = istable ? 'div' : this.rtag
569+
if (istable) {
570570
list = [h('table', [h('tbody', list)])]
571571
}
572572
const renderList = h(wtag, {

0 commit comments

Comments
 (0)