Fix a null ref exception in dashboard layout (#1348)

This commit is contained in:
Karl Burtram
2018-05-03 21:57:17 -07:00
committed by GitHub
parent 03989a5af0
commit b54b4a4445

View File

@@ -63,6 +63,8 @@ export class DashboardHomeContainer extends DashboardWidgetContainer {
public layout() {
super.layout();
this._scrollable.layout();
if (this._scrollable) {
this._scrollable.layout();
}
}
}