Fix search editor URI malform error

This commit is contained in:
Jackson Kearl
2020-01-13 10:58:53 -08:00
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 {