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

pull/17267/head^2
kay delaney 6 years ago committed by GitHub
parent 48570c4286
commit cbe057fce8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      public/app/features/explore/LogsContainer.tsx

@ -1,4 +1,4 @@
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 = {

Loading…
Cancel
Save