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
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
Original file line number Diff line number Diff line change 9999 type : [ Function , Boolean ] , // Boolean just disable for priviate.
100100 default : false
101101 } ,
102- isTable : {
102+ istable : {
103103 type : Boolean ,
104104 default : false
105105 } ,
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 , {
You can’t perform that action at this time.
0 commit comments