Fix file URI input (#6837)

* Fix QueryInput URI to work with transformers

* Fix input for results as well
This commit is contained in:
Charles Gagnon
2019-08-20 16:30:46 -07:00
committed by GitHub
parent 8724944d26
commit 3fd487cfa2
2 changed files with 2 additions and 2 deletions

View File

@@ -194,7 +194,7 @@ export class QueryInput extends EditorInput implements IEncodingSupport, IConnec
}
// Getters for private properties
public get uri(): string { return this.getResource().toString(); }
public get uri(): string { return this.getResource().toString(true); }
public get sql(): UntitledEditorInput { return this._sql; }
public get results(): QueryResultsInput { return this._results; }
public updateSelection(selection: ISelectionData): void { this._updateSelection.fire(selection); }