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.
1 parent e21c264 commit 29c44c8Copy full SHA for 29c44c8
app/frontend/src/components/AnalysisPanel/ThoughtProcess.tsx
@@ -22,7 +22,7 @@ function truncateImageUrl(val: string) {
22
return val.slice(0, 30) + "...";
23
} else if (typeof val === "string" && val.startsWith("http")) {
24
const blobIndex = val.indexOf(".blob.core.windows.net/");
25
- return blobIndex !== -1 ? val.slice(blobIndex + ".blob.core.windows.net/".length) : val;
+ return blobIndex !== -1 ? ".../" + val.slice(blobIndex + ".blob.core.windows.net/".length) : val;
26
}
27
return val;
28
0 commit comments