mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 17:22:51 -05:00
fix: typos (#20625)
This commit is contained in:
@@ -123,7 +123,7 @@ export class FileBrowserTreeView extends Disposable implements IDisposable {
|
||||
if (isSingleClick) {
|
||||
this.onClickedCallback(event.selection[0]);
|
||||
} 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;
|
||||
}
|
||||
|
||||
public onDoublieClickedCallback: any;
|
||||
public onDoubleClickedCallback: 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) {
|
||||
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) {
|
||||
delete self._sessions[session.sessionId!].nodes[node.nodePath];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user