File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterat
111
111
// Boolean just disable for priviate.
112
112
"default" : false
113
113
} ,
114
- isTable : {
114
+ istable : {
115
115
type : Boolean ,
116
116
"default" : false
117
117
} ,
@@ -551,11 +551,11 @@ function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterat
551
551
var _this$delta = this . delta ,
552
552
paddingTop = _this$delta . paddingTop ,
553
553
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 ;
557
557
558
- if ( isTable ) {
558
+ if ( istable ) {
559
559
list = [ h ( 'table' , [ h ( 'tbody' , list ) ] ) ] ;
560
560
}
561
561
Original file line number Diff line number Diff line change 99
99
type : [ Function , Boolean ] , // Boolean just disable for priviate.
100
100
default : false
101
101
} ,
102
- isTable : {
102
+ istable : {
103
103
type : Boolean ,
104
104
default : false
105
105
} ,
563
563
let list = this . filter ( h )
564
564
const { paddingTop, paddingBottom } = this . delta
565
565
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 ) {
570
570
list = [ h ( 'table' , [ h ( 'tbody' , list ) ] ) ]
571
571
}
572
572
const renderList = h ( wtag , {
You can’t perform that action at this time.
0 commit comments