fixed Row classname bug in 4.5.0

This commit is contained in:
梁灏 2021-04-23 11:03:26 +08:00
parent 0ba5547eb0
commit 67beea14d6

View file

@ -45,8 +45,8 @@
`${prefixCls}`, `${prefixCls}`,
{ {
[`${prefixCls}-${this.type}`]: !!this.type, [`${prefixCls}-${this.type}`]: !!this.type,
[`${prefixCls}-${this.type}-${this.align}`]: !!this.align, [`${prefixCls}-${this.type}-${this.align}`]: !!this.align && this.type,
[`${prefixCls}-${this.type}-${this.justify}`]: !!this.justify, [`${prefixCls}-${this.type}-${this.justify}`]: !!this.justify && this.type,
[`${prefixCls}-${this.align}`]: !!this.align, [`${prefixCls}-${this.align}`]: !!this.align,
[`${prefixCls}-${this.justify}`]: !!this.justify, [`${prefixCls}-${this.justify}`]: !!this.justify,
[`${this.className}`]: !!this.className, [`${this.className}`]: !!this.className,