Merge pull request #1154 from palash-signoz/341-url-encoding

feat: url encoding is added in the new dashboard query
This commit is contained in:
palash-signoz 2022-05-19 13:28:32 +05:30 committed by GitHub
commit 02ba0eda9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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',
}); });