height 赋值报错

This commit is contained in:
2betop 2019-12-31 11:44:55 +08:00
parent 71de4463ea
commit 98bd1aaa5a
1 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@ export class Collapse extends React.Component<CollapseProps, any> {
@autobind
handleEnter(elem: HTMLElement) {
elem.style['height'] = null;
elem.style['height'] = '';
}
@autobind
@ -56,7 +56,7 @@ export class Collapse extends React.Component<CollapseProps, any> {
@autobind
handleEntered(elem: HTMLElement) {
elem.style['height'] = null;
elem.style['height'] = '';
}
@autobind
@ -74,7 +74,7 @@ export class Collapse extends React.Component<CollapseProps, any> {
@autobind
handleExiting(elem: HTMLElement) {
elem.style['height'] = null;
elem.style['height'] = '';
}
render() {