mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
Fix search editor URI malform error
This commit is contained in:
committed by
Martin Aeschlimann
parent
85903e849f
commit
9fa325deec
@@ -85,7 +85,7 @@ export class SearchEditorInput extends EditorInput {
|
||||
}
|
||||
|
||||
getResource(): URI {
|
||||
return URI.from({ scheme: 'untitled', authority: 'search-editor', path: this.config.query, fragment: `${this.instanceNumber}` });
|
||||
return URI.from({ scheme: 'search-editor', fragment: `${this.instanceNumber}` });
|
||||
}
|
||||
|
||||
getName(): string {
|
||||
|
||||
Reference in New Issue
Block a user