We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8190beb commit e761f97Copy full SHA for e761f97
src/components/BrowserCell/BrowserCell.react.js
@@ -177,6 +177,9 @@ export default class BrowserCell extends Component {
177
componentDidUpdate(prevProps) {
178
if ( this.props.value !== prevProps.value ) {
179
this.renderCellContent();
180
+ this.props.value._previousSave
181
+ ?.then(() => this.renderCellContent())
182
+ ?.catch(err => console.log(err))
183
}
184
if (this.props.current) {
185
const node = this.cellRef.current;
0 commit comments