diff --git a/ui/src/pages/query-profile/index.tsx b/ui/src/pages/query-profile/index.tsx index bcd71b2ea0..0f136dbfea 100644 --- a/ui/src/pages/query-profile/index.tsx +++ b/ui/src/pages/query-profile/index.tsx @@ -76,7 +76,7 @@ export default function QueryProfile(params: any) { } function download(profile) { - const blob = new Blob([JSON.stringify(profile)], { + const blob = new Blob([JSON.stringify(profile, null, 2)], { type: "text/plain" }); const tagA = document.createElement("a");