Skip to content

Commit e761f97

Browse files
authored
fix: File uploading status not updating in data browser (#2422)
1 parent 8190beb commit e761f97

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/components/BrowserCell/BrowserCell.react.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,9 @@ export default class BrowserCell extends Component {
177177
componentDidUpdate(prevProps) {
178178
if ( this.props.value !== prevProps.value ) {
179179
this.renderCellContent();
180+
this.props.value._previousSave
181+
?.then(() => this.renderCellContent())
182+
?.catch(err => console.log(err))
180183
}
181184
if (this.props.current) {
182185
const node = this.cellRef.current;

0 commit comments

Comments
 (0)