File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 77- Ensure added databases have zipped source locations for databases added as archives or downloaded from the internet.
88- Fix bug where it is not possible to add databases starting with ` db-* ` .
99- Change styling of pagination section of the results page.
10+ - Fix display of query text for stored quick queries.
1011
1112## 1.3.0 - 22 June 2020
1213
Original file line number Diff line number Diff line change @@ -417,7 +417,7 @@ export class QueryHistoryManager {
417417 : singleItem . queryName + '.ql' ;
418418 const params = new URLSearchParams ( {
419419 isQuickEval : String ( ! ! singleItem . query . quickEvalPosition ) ,
420- queryText : await this . getQueryText ( singleItem ) ,
420+ queryText : encodeURIComponent ( await this . getQueryText ( singleItem ) ) ,
421421 } ) ;
422422 const uri = vscode . Uri . parse (
423423 `codeql:${ singleItem . query . queryID } -${ queryName } ?${ params . toString ( ) } `
You can’t perform that action at this time.
0 commit comments