mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
fix hygiene
This commit is contained in:
@@ -59,7 +59,7 @@ export abstract class LanguageViewBase {
|
|||||||
public browseButtonMaxLength = 20;
|
public browseButtonMaxLength = 20;
|
||||||
public spaceBetweenComponentsLength = 10;
|
public spaceBetweenComponentsLength = 10;
|
||||||
|
|
||||||
constructor(protected _apiWrapper: ApiWrapper, protected _root?: string, protected _parent?: LanguageViewBase, ) {
|
constructor(protected _apiWrapper: ApiWrapper, protected _root?: string, protected _parent?: LanguageViewBase,) {
|
||||||
if (this._parent) {
|
if (this._parent) {
|
||||||
if (!this._root) {
|
if (!this._root) {
|
||||||
this._root = this._parent.root;
|
this._root = this._parent.root;
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ export default class CheckBoxComponent extends ComponentBase implements ICompone
|
|||||||
constructor(
|
constructor(
|
||||||
@Inject(forwardRef(() => ChangeDetectorRef)) changeRef: ChangeDetectorRef,
|
@Inject(forwardRef(() => ChangeDetectorRef)) changeRef: ChangeDetectorRef,
|
||||||
@Inject(IWorkbenchThemeService) private themeService: IWorkbenchThemeService,
|
@Inject(IWorkbenchThemeService) private themeService: IWorkbenchThemeService,
|
||||||
@Inject(forwardRef(() => ElementRef)) el: ElementRef, ) {
|
@Inject(forwardRef(() => ElementRef)) el: ElementRef,) {
|
||||||
super(changeRef, el);
|
super(changeRef, el);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ export abstract class ComponentWithIconBase extends ComponentBase {
|
|||||||
protected _iconPath: IUserFriendlyIcon;
|
protected _iconPath: IUserFriendlyIcon;
|
||||||
constructor(
|
constructor(
|
||||||
changeRef: ChangeDetectorRef,
|
changeRef: ChangeDetectorRef,
|
||||||
el: ElementRef, ) {
|
el: ElementRef,) {
|
||||||
super(changeRef, el);
|
super(changeRef, el);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -527,7 +527,7 @@ export class ConnectionManagementService extends Disposable implements IConnecti
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private doActionsAfterConnectionComplete(uri: string, options: IConnectionCompletionOptions, ) {
|
private doActionsAfterConnectionComplete(uri: string, options: IConnectionCompletionOptions,) {
|
||||||
let connectionManagementInfo = this._connectionStatusManager.findConnection(uri);
|
let connectionManagementInfo = this._connectionStatusManager.findConnection(uri);
|
||||||
if (options.showDashboard) {
|
if (options.showDashboard) {
|
||||||
this.showDashboardForConnectionManagementInfo(connectionManagementInfo.connectionProfile);
|
this.showDashboardForConnectionManagementInfo(connectionManagementInfo.connectionProfile);
|
||||||
|
|||||||
Reference in New Issue
Block a user