Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ working correctly in certain circumstances when the table contains `readonly` co
- [#206](https://github.com/plotly/dash-table/issues/206) Fix a bug with copy/paste to and from
column filters not working.

- [#561](https://github.com/plotly/dash-table/issues/561) Fix an incorrect React PureComponent
usage causing warnings in DevTools.

## [4.4.0] - 2019-10-08
### Added
[#546](https://github.com/plotly/dash-table/issues/546)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { PureComponent } from 'react';
import React, { Component } from 'react';

import Tooltip, { ITooltipProps, Arrow } from 'dash-table/components/Tooltip';
import tooltipHelper from 'dash-table/components/tooltipHelper';
Expand All @@ -10,7 +10,7 @@ interface IState {
cell?: any;
}

export default class TableTooltip extends PureComponent<ITooltipProps, IState> {
export default class TableTooltip extends Component<ITooltipProps, IState> {
constructor(props: ITooltipProps) {
super(props);

Expand Down