mirror of
https://github.com/ansible/awx.git
synced 2026-04-13 22:19:27 -02:30
Avoid prop reference error in test
This commit is contained in:
@@ -506,7 +506,7 @@ class JobOutput extends Component {
|
|||||||
handleResize({ width }) {
|
handleResize({ width }) {
|
||||||
if (width !== this._previousWidth) {
|
if (width !== this._previousWidth) {
|
||||||
this.cache.clearAll();
|
this.cache.clearAll();
|
||||||
if (this.listRef) {
|
if (this.listRef?.recomputeRowHeights) {
|
||||||
this.listRef.recomputeRowHeights();
|
this.listRef.recomputeRowHeights();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user