Commit cbe057fc by kay delaney Committed by GitHub

Explore: Changes LogsContainer from a PureComponent to a Component (#17741)

parent 48570c42
import React, { PureComponent } from 'react';
import React, { Component } from 'react';
import { hot } from 'react-hot-loader';
import { connect } from 'react-redux';
import {
......@@ -53,7 +53,7 @@ interface LogsContainerProps {
stopLive: typeof changeRefreshIntervalAction;
}
export class LogsContainer extends PureComponent<LogsContainerProps> {
export class LogsContainer extends Component<LogsContainerProps> {
onChangeTime = (absRange: AbsoluteTimeRange) => {
const { exploreId, timeZone, changeTime } = this.props;
const range = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment