mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-04-01 01:20:31 -04:00
Merge from vscode 011858832762aaff245b2336fb1c38166e7a10fb (#4663)
This commit is contained in:
@@ -25,6 +25,7 @@ import { ILabelService } from 'vs/platform/label/common/label';
|
||||
import { CancellationToken } from 'vs/base/common/cancellation';
|
||||
import { Schemas } from 'vs/base/common/network';
|
||||
import { IOpenerService } from 'vs/platform/opener/common/opener';
|
||||
import { withUndefinedAsNull } from 'vs/base/common/types';
|
||||
|
||||
class SymbolEntry extends EditorQuickOpenEntry {
|
||||
private bearingResolve: Promise<this | undefined>;
|
||||
@@ -58,7 +59,7 @@ class SymbolEntry extends EditorQuickOpenEntry {
|
||||
return this.labelService.getUriLabel(this.bearing.location.uri, { relative: true });
|
||||
}
|
||||
|
||||
return containerName || null;
|
||||
return withUndefinedAsNull(containerName);
|
||||
}
|
||||
|
||||
getIcon(): string {
|
||||
|
||||
Reference in New Issue
Block a user