From e6409894fe6703aa24e4faed8949e43e77a4b84a Mon Sep 17 00:00:00 2001 From: Thomas Date: Mon, 28 Sep 2015 18:39:11 +0100 Subject: [PATCH] Use read-dom for findDOMNode calls in LogMonitor Tiny change an makes the current build not throw red warnings when used in React 14-rc1. Tests still pass locally. --- src/react/LogMonitor.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/react/LogMonitor.js b/src/react/LogMonitor.js index c9839de5..e86c7bd9 100644 --- a/src/react/LogMonitor.js +++ b/src/react/LogMonitor.js @@ -1,4 +1,5 @@ -import React, { PropTypes, findDOMNode, Component } from 'react'; +import React, { PropTypes, Component } from 'react'; +import { findDOMNode } from 'react-dom'; import LogMonitorEntry from './LogMonitorEntry'; import LogMonitorButton from './LogMonitorButton'; import * as themes from './themes';