feat: url encoding is added in the new dashboard query

This commit is contained in:
Palash gupta 2022-05-18 07:37:15 +05:30
parent 53528f1045
commit e3987206de
No known key found for this signature in database
GPG Key ID: 8FD05AE6F9150AD6

View File

@ -65,7 +65,7 @@ function GridCardGraph({
.map(async (query) => { .map(async (query) => {
const result = await getQueryResult({ const result = await getQueryResult({
end, end,
query: query.query, query: encodeURIComponent(query.query),
start, start,
step: '60', step: '60',
}); });