mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
fix: typos (#20625)
This commit is contained in:
@@ -123,7 +123,7 @@ export class FileBrowserTreeView extends Disposable implements IDisposable {
|
|||||||
if (isSingleClick) {
|
if (isSingleClick) {
|
||||||
this.onClickedCallback(event.selection[0]);
|
this.onClickedCallback(event.selection[0]);
|
||||||
} else if (isDoubleClick) {
|
} else if (isDoubleClick) {
|
||||||
this.onDoublieClickedCallback(event.selection[0]);
|
this.onDoubleClickedCallback(event.selection[0]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -133,9 +133,9 @@ export class FileBrowserTreeView extends Disposable implements IDisposable {
|
|||||||
this.onClickedCallback = fn;
|
this.onClickedCallback = fn;
|
||||||
}
|
}
|
||||||
|
|
||||||
public onDoublieClickedCallback: any;
|
public onDoubleClickedCallback: any;
|
||||||
public setOnDoubleClickedCallback(fn: any) {
|
public setOnDoubleClickedCallback(fn: any) {
|
||||||
this.onDoublieClickedCallback = fn;
|
this.onDoubleClickedCallback = fn;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -430,7 +430,7 @@ export class ObjectExplorerService implements IObjectExplorerService {
|
|||||||
if (resultMap.size === allProviders.length) {
|
if (resultMap.size === allProviders.length) {
|
||||||
resolve(self.mergeResults(allProviders, resultMap, node.nodePath));
|
resolve(self.mergeResults(allProviders, resultMap, node.nodePath));
|
||||||
|
|
||||||
// Have to delete it after get all reponses otherwise couldn't find session for not the first response
|
// Have to delete it after get all responses otherwise couldn't find session for not the first response
|
||||||
if (newRequest) {
|
if (newRequest) {
|
||||||
delete self._sessions[session.sessionId!].nodes[node.nodePath];
|
delete self._sessions[session.sessionId!].nodes[node.nodePath];
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user