mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
min height for event detail view when expanding (#3255)
This commit is contained in:
@@ -84,7 +84,10 @@ class BasicView extends View {
|
|||||||
this._previousSize = this.size;
|
this._previousSize = this.size;
|
||||||
this.setFixed(this.headerSize);
|
this.setFixed(this.headerSize);
|
||||||
} else {
|
} else {
|
||||||
this.setFlexible(this._previousSize);
|
// Enforce the min height for the view when user is doing expand operation,
|
||||||
|
// to make sure the view has a reasonable height.
|
||||||
|
const minHeight = 200;
|
||||||
|
this.setFlexible(Math.max(this._previousSize, minHeight));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user