Fix Azure account picker (#9569)

* Fix orientation issue

* remove sql carbon to reduce conflict
This commit is contained in:
Amir Omidi
2020-03-11 16:54:06 -07:00
committed by GitHub
parent 0226ad69da
commit 06cbde054d

View File

@@ -124,7 +124,7 @@ export abstract class Pane extends Disposable implements IView {
constructor(options: IPaneOptions) {
super();
this._expanded = typeof options.expanded === 'undefined' ? true : !!options.expanded;
this._orientation = typeof options.orientation === 'undefined' ? Orientation.VERTICAL : Orientation.HORIZONTAL;
this._orientation = typeof options.orientation === 'undefined' ? Orientation.VERTICAL : options.orientation;
this.ariaHeaderLabel = localize('viewSection', "{0} Section", options.title);
this._minimumBodySize = typeof options.minimumBodySize === 'number' ? options.minimumBodySize : 120;
this._maximumBodySize = typeof options.maximumBodySize === 'number' ? options.maximumBodySize : Number.POSITIVE_INFINITY;