mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
fix bottom of widgets being cutoff (#9930)
This commit is contained in:
@@ -129,6 +129,7 @@ export class DashboardWidgetWrapper extends AngularDisposable implements OnInit
|
|||||||
this._collapseAction = this.instantiationService.createInstance(CollapseWidgetAction, this._bootstrap.getUnderlyingUri(), this.guid, this.collapsed);
|
this._collapseAction = this.instantiationService.createInstance(CollapseWidgetAction, this._bootstrap.getUnderlyingUri(), this.guid, this.collapsed);
|
||||||
if (this.bottomCollapse) {
|
if (this.bottomCollapse) {
|
||||||
this._bottomActionbar.push(this._collapseAction, { icon: true, label: false });
|
this._bottomActionbar.push(this._collapseAction, { icon: true, label: false });
|
||||||
|
this._bottomActionbarRef.nativeElement.style.display = 'block';
|
||||||
} else {
|
} else {
|
||||||
this._actionbar.push(this._collapseAction, { icon: true, label: false });
|
this._actionbar.push(this._collapseAction, { icon: true, label: false });
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,4 +48,5 @@ dashboard-widget-wrapper .bottomActionbar {
|
|||||||
flex: 0 0 auto;
|
flex: 0 0 auto;
|
||||||
align-self: center;
|
align-self: center;
|
||||||
margin-top: -28px;
|
margin-top: -28px;
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user