From 4c0034ecc11663a92c72b0868acc3883e8d5bcd5 Mon Sep 17 00:00:00 2001 From: Olivier Tassinari Date: Sat, 11 Jul 2015 10:51:25 +0100 Subject: [PATCH] [Dialog] fix contentClassName not used --- src/dialog.jsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/dialog.jsx b/src/dialog.jsx index 568807e44b391e..2590d135e696fc 100644 --- a/src/dialog.jsx +++ b/src/dialog.jsx @@ -49,7 +49,12 @@ let TransitionItem = React.createClass({ }, render() { - return
+ let { + style, + ...other, + } = this.props; + + return
{this.props.children}
; },