mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 17:22:20 -05:00
Fix bug where webview options weren't revived, causing URI lookup to fail (#2453)
This commit is contained in:
@@ -548,7 +548,7 @@ class ComponentWrapper implements sqlops.Component {
|
||||
} else {
|
||||
throw new Error(nls.localize('invalidIndex', 'The index is invalid.'));
|
||||
}
|
||||
this._proxy.$addToContainer(this._handle, this.id, config.toIItemConfig(), index).then(undefined, this.handleError);
|
||||
this._proxy.$addToContainer(this._handle, this.id, config.toIItemConfig(), index).then(undefined, (err) => this.handleError(err));
|
||||
}
|
||||
|
||||
public setLayout(layout: any): Thenable<void> {
|
||||
|
||||
Reference in New Issue
Block a user