We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e75ff17 + cda6e70 commit 1df834fCopy full SHA for 1df834f
src/components/FormSelectList.vue
@@ -105,7 +105,7 @@
105
let dataSourceUrl = '/requests/data_sources/' + selectedDataSource;
106
if (typeof this.options.pmqlQuery !== 'undefined' && this.options.pmqlQuery !== '' && this.options.pmqlQuery !== null) {
107
const pmql = Mustache.render(this.options.pmqlQuery, {data: this.validationData});
108
- dataSourceUrl += '?pmql=' + pmql;
+ dataSourceUrl += '?pmql=' + encodeURIComponent(pmql);
109
}
110
111
this.apiClient
0 commit comments