Skip to content

Commit

Permalink
fix: File uploading status not updating in data browser (#2422)
Browse files Browse the repository at this point in the history
  • Loading branch information
patelmilanun authored May 27, 2023
1 parent 8190beb commit e761f97
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/BrowserCell/BrowserCell.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e761f97

Please sign in to comment.