fixed Row classname bug in 4.5.0
This commit is contained in:
parent
0ba5547eb0
commit
67beea14d6
1 changed files with 2 additions and 2 deletions
|
@ -45,8 +45,8 @@
|
|||
`${prefixCls}`,
|
||||
{
|
||||
[`${prefixCls}-${this.type}`]: !!this.type,
|
||||
[`${prefixCls}-${this.type}-${this.align}`]: !!this.align,
|
||||
[`${prefixCls}-${this.type}-${this.justify}`]: !!this.justify,
|
||||
[`${prefixCls}-${this.type}-${this.align}`]: !!this.align && this.type,
|
||||
[`${prefixCls}-${this.type}-${this.justify}`]: !!this.justify && this.type,
|
||||
[`${prefixCls}-${this.align}`]: !!this.align,
|
||||
[`${prefixCls}-${this.justify}`]: !!this.justify,
|
||||
[`${this.className}`]: !!this.className,
|
||||
|
|
Loading…
Add table
Reference in a new issue