File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import filter from 'lodash/filter';
88import size from 'lodash/size' ;
99import findIndex from 'lodash/findIndex' ;
1010import get from 'lodash/get' ;
11+ import isNil from 'lodash/isNil' ;
1112import { connect } from 'react-redux' ;
1213import { setGlobalStyle , updateFragment } from '../actions' ;
1314import Typeface from './typeface' ;
@@ -758,7 +759,7 @@ export class Manager extends Component {
758759 transition : ( slide . props . transition || { } ) . length
759760 ? slide . props . transition
760761 : this . props . transition ,
761- transitionDuration : ( slide . props . transition || { } ) . transitionDuration
762+ transitionDuration : ! isNil ( slide . props . transitionDuration )
762763 ? slide . props . transitionDuration
763764 : this . props . transitionDuration ,
764765 slideReference : this . state . slideReference
You can’t perform that action at this time.
0 commit comments