diff --git a/src/components/BrowserCell/BrowserCell.react.js b/src/components/BrowserCell/BrowserCell.react.js index 96d40b8fcc..b32e5e7a40 100644 --- a/src/components/BrowserCell/BrowserCell.react.js +++ b/src/components/BrowserCell/BrowserCell.react.js @@ -177,6 +177,9 @@ export default class BrowserCell extends Component { componentDidUpdate(prevProps) { if ( this.props.value !== prevProps.value ) { this.renderCellContent(); + this.props.value._previousSave + ?.then(() => this.renderCellContent()) + ?.catch(err => console.log(err)) } if (this.props.current) { const node = this.cellRef.current;