Skip to content

Commit 29c44c8

Browse files
committed
Fixes to sidebar so that it all fits
1 parent e21c264 commit 29c44c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/frontend/src/components/AnalysisPanel/ThoughtProcess.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function truncateImageUrl(val: string) {
2222
return val.slice(0, 30) + "...";
2323
} else if (typeof val === "string" && val.startsWith("http")) {
2424
const blobIndex = val.indexOf(".blob.core.windows.net/");
25-
return blobIndex !== -1 ? val.slice(blobIndex + ".blob.core.windows.net/".length) : val;
25+
return blobIndex !== -1 ? ".../" + val.slice(blobIndex + ".blob.core.windows.net/".length) : val;
2626
}
2727
return val;
2828
}

0 commit comments

Comments
 (0)