@@ -30,7 +30,7 @@ export default class BrowserCell extends Component {
30
30
} ;
31
31
}
32
32
33
- async renderCellContent ( ) {
33
+ renderCellContent ( ) {
34
34
let content = this . props . value ;
35
35
let isNewRow = this . props . row < 0 ;
36
36
this . copyableValue = content ;
@@ -53,7 +53,7 @@ export default class BrowserCell extends Component {
53
53
content = < span > </ span > ;
54
54
classes . push ( styles . empty ) ;
55
55
} else if ( this . props . type === 'Pointer' ) {
56
- const defaultPointerKey = await ColumnPreferences . getPointerDefaultKey ( this . props . appId , this . props . value . className ) ;
56
+ const defaultPointerKey = ColumnPreferences . getPointerDefaultKey ( this . props . appId , this . props . value . className ) ;
57
57
let dataValue = this . props . value . id ;
58
58
if ( defaultPointerKey !== 'objectId' ) {
59
59
dataValue = this . props . value . get ( defaultPointerKey ) ;
@@ -175,9 +175,9 @@ export default class BrowserCell extends Component {
175
175
this . setState ( { ...this . state , content, classes } )
176
176
}
177
177
178
- async componentDidUpdate ( prevProps ) {
178
+ componentDidUpdate ( prevProps ) {
179
179
if ( this . props . value !== prevProps . value ) {
180
- await this . renderCellContent ( ) ;
180
+ this . renderCellContent ( ) ;
181
181
}
182
182
if ( this . props . current ) {
183
183
const node = this . cellRef . current ;
0 commit comments