From a6f7d645e4639a02afa8549e9fb100d3d3b7aa63 Mon Sep 17 00:00:00 2001 From: Conroy Whitney Date: Thu, 21 Jul 2016 11:33:48 -0700 Subject: [PATCH] Ensure theme gets passed down to TimePicker child components --- components/time_picker/TimePicker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/time_picker/TimePicker.js b/components/time_picker/TimePicker.js index cd10a252..38f42067 100644 --- a/components/time_picker/TimePicker.js +++ b/components/time_picker/TimePicker.js @@ -59,13 +59,13 @@ const factory = (TimePickerDialog, Input) => { }; render () { - const { value, format, inputClassName, onEscKeyDown, onOverlayClick, theme, ...others } = this.props; + const { value, format, inputClassName, onEscKeyDown, onOverlayClick, ...others } = this.props; const formattedTime = value ? time.formatTime(value, format) : ''; return (